Make a Matcher that returns all (0 or more) sequential matches of the first parser while the second parser does not match (that is until the second parser matches).
Use takeUntil if the stop condition is based on the parsed value.
Implementation is based on takeWhile.
A parser that produces result values.
A parser that serves as a stop condition.
Generated using TypeDoc
Make a Matcher that returns all (0 or more) sequential matches of the first parser while the second parser does not match (that is until the second parser matches).
Use takeUntil if the stop condition is based on the parsed value.
Implementation is based on takeWhile.