combparser
combparser copied to clipboard
String copying causing slowdowns
Combparser is fairly slow. I think this has to do with the fact that strings are copied for each step of the parsing as it is sliced. This should be replaced by keeping a reference to the original string and only pass along a slice to work on.