package combinator
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
-
trait
Parsers extends AnyRef
Generic base parsers which are not specifically tailored for parsing of text markup.
-
class
Repeat[+T] extends Parser[List[T]]
Parser implementation for repeatedly applying the specified base parser until it fails.
Parser implementation for repeatedly applying the specified base parser until it fails.
By default the parser allows for any number of successful parser invocations, including empty results. Use of the
min
,max
andtake
methods allows to apply additional constrains on the expected number of results.