manyTill p end applies parser pzero
or more times until parser end succeeds. Returns the list of
values returned by p. end result is consumed and
lost. Use manyTill_ if you wish to keep it.
See also: skipMany, skipManyTill.
manyTill_ p end applies parser pzero
or more times until parser end succeeds. Returns the list of
values returned by p and the end result. Use
manyTill if you have no need in the result of the end.
See also: skipMany, skipManyTill.
manyTill p end applies parser pzero
or more times until parser end succeeds. Returns the list of
values returned by p. Note that end result is
consumed and lost. Use manyTill_ if you wish to keep it.
See also: skipMany, skipManyTill.
manyTill_ p end applies parser pzero
or more times until parser end succeeds. Returns the list of
values returned by p and the end result. Use
manyTill if you have no need in the result of the end.
See also: skipMany, skipManyTill.
skipManyTill p end applies the parser pzero or more times skipping results until parser end
succeeds. Result parsed by end is then returned.
See also: manyTill, skipMany.
skipManyTill p end applies the parser pzero or more times skipping results until parser end
succeeds. Result parsed by end is then returned.
See also: manyTill, skipMany.