Parsec's parse pattern "(some_input)" input returns the parsed data (as I specified in pattern.
How to know how much of input have it consumed (the pattern is not anchored with eof)? I don't want to add length tracking though the all pattern's internals (if discards some parts of input).
getInputbefore the parse to get the input stream and uselengthto get the length of the input stream. After the parse compare the starting length to the length of input remaining. – stephen tetley Jul 22 '11 at 16:57