Module

Text.Parsing.Applicative.Repetition

Package
purescript-parsing-repetitionDEPRECATED
Repository
markfarrell/purescript-parsing-repetition

#until Source

until :: forall c b a f m. Monad m => Applicative f => Monoid (f b) => ParserT a m b -> ParserT a m c -> ParserT a m (f b)

Consumes the current parse input with a parser p until the result of a parser q is successful. Does not consume the remaining parse input with the successful result of q.

#exact Source

exact :: forall b f a m. Monad m => Applicative f => Monoid (f b) => Int -> ParserT a m b -> ParserT a m (f b)

Consumes the current parse input with a parser p, with n repetitions of p. Fails if the remaining parse input can be moreover be parsed with p.

#least Source

least :: forall b a f m. Monad m => Applicative f => Monoid (f b) => Int -> ParserT a m b -> ParserT a m (f b)

Consumes the current parse input with a parser p, with n repetitions of p. Does not check if the remaining parse input can be moreover parsed with p.

#greedy Source

greedy :: forall b f a m. Monad m => Applicative f => Monoid (f b) => ParserT a m b -> ParserT a m (Tuple Int (f b))

Consumes the current input with a parser p as many times as successful. Produces a pair of the number of successful repetitions of p, and the accumulated result. Not guaranteed to be stack-safe for large input.

#many Source

many :: forall b f a m. Monad m => Applicative f => Monoid (f b) => ParserT a m b -> ParserT a m (f b)

Consumes the current input with a parser p as many times as successful. Produces the accumulated result, without the guarantee of being stack-safe for large input.

#most Source

most :: forall b f a m. Monad m => Applicative f => Monoid (f b) => Int -> ParserT a m b -> ParserT a m (f b)

Consumes the current parse input with a parser p, with m greedy repetitions of p. Fails if m is greater than the constraint n passed to the function.

#range Source

range :: forall b f a m. Monad m => Applicative f => Monoid (f b) => Int -> Int -> ParserT a m b -> ParserT a m (f b)

Consumes the current parse input with a parser p, with at least min and at most max >= min repetitions of p.