Module combine::parser::sequence[][src]

Expand description

Combinators which take multiple parsers and applies them one after another.

Structs

Functions

Parses open followed by parser followed by close. Returns the value of parser.

Equivalent to p.then(f).

Equivalent to p.then_partial(f).

Equivalent to p.then_ref(f).

Equivalent to p1.with(p2).