Applies start and then repeatedly applies the source parser until pTill succeeds. Similar to a mix of between and manyTill. Yields the results of the source parser in an array.
start
pTill
between
manyTill
The initial parser to apply.
Optional
Optionally, the terminator. Defaults to start.
Optionally, a projection to apply on the captured results.
Applies
start
and then repeatedly applies the source parser untilpTill
succeeds. Similar to a mix ofbetween
andmanyTill
. Yields the results of the source parser in an array.