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

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

Structs

Between
PartialState1
PartialState2
PartialState3
PartialState4
PartialState5
PartialState6
PartialState7
PartialState8
PartialState9
PartialState10
PartialState11
PartialState12
PartialState13
PartialState14
PartialState15
PartialState16
PartialState17
PartialState18
PartialState19
PartialState20
Skip
Then
ThenPartial
ThenRef
With

Functions

between

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

skip
then

Equivalent to p.then(f).

then_partial

Equivalent to p.then_partial(f).

then_ref

Equivalent to p.then_ref(f).

with

Equivalent to p1.with(p2).