scala.util.parsing.combinator.Parsers
Returns a parser that repeatedly parses what this parser parses, interleaved with the sep' parser
Returns a parser that repeatedly parses what this parser parses
Returns a parser that repeatedly (at least once) parses what this parser parses
A parser combinator for sequential composition which keeps only the left result
Returns into(fq)
Returns a parser that optionally parses what this parser parses
A parser combinator for partial function application
A parser combinator for partial function application
A parser combinator for function application
(f andThen g)(x) == g(f(x))
An unspecified method that defines the behaviour of this parser
(f compose g)(x) == f(g(x))
A parser combinator that parameterises a subsequent parser with the result of this one
Returns a string representation of the object
A parser combinator for alternative composition
A parser combinator for alternative with longest match composition
A parser combinator for sequential composition
A parser combinator for non-back-tracking sequential composition
A parser combinator for sequential composition which keeps only the right result
The root class of parsers. Parsers are functions from the Input type to ParseResult