[][src]Module pahs::combinators

Parser combinators.

Structs

Alternate

Try all parsers supplied via one in order and return the value of the first one that successfully parses.

Functions

count

Runs the specified parser count times, returning all parsed values in a Vec.

optional

Wraps the specified parser, making it optional.

skip_count

Runs the specified parser count times, discarding the parsed values.