chumsky icon indicating copy to clipboard operation
chumsky copied to clipboard

Add a way to turn a regular Parser into an IterParser so that chumsky can be used as a stream transformer

Open zesterer opened this issue 1 year ago • 2 comments

Example APIs:

Parser::into_iter_parser(self) -> impl IterParser where O: IntoIterator
IterParser::chain(self, impl IterParser) -> impl IterParser
IterParser::repeated(self) -> impl IterParser // TODO: Conflict with <Repeated as Parser>::repeated?

zesterer avatar May 16 '23 12:05 zesterer