We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We should have the super-useful manyTill_ combinator.
manyTill_
Combinators.manyTill_
manyTill_ :: forall e m a s. Monad m => ParserT s m a -> ParserT s m e -> ParserT s m (Tuple (List a) e)
Also
someTill_ :: forall e m a s. Monad m => ParserT s m a -> ParserT s m e -> ParserT s m (Tuple (List a) e)
The text was updated successfully, but these errors were encountered:
I've written a draft implementation of manyTill_ and many1Till_ and I'll submit a PR if you like.
many1Till_
https://github.com/jamesdbrock/purescript-parsing-string-replace/blob/be8c27680bccd1a8f54c5c98d72747a1cc0e4a84/src/Text.Parsing.Parser.String.Replace.purs#L45
Sorry, something went wrong.
I've published this in another package. Thinking about merging that package into this one. https://pursuit.purescript.org/packages/purescript-parsing-replace/docs/Text.Parsing.Replace.String.Combinator#v:manyTill_
Resolved by #143
No branches or pull requests
We should have the super-useful
manyTill_
combinator.Combinators.manyTill_
Also
The text was updated successfully, but these errors were encountered: