Expand description
Combinators which take multiple parsers and applies them one after another.
Structs§
Functions§
- Parses
open
followed byparser
followed byclose
. Returns the value ofparser
. - Equivalent to
p.then(f)
. - Equivalent to
p.then_partial(f)
. - Equivalent to
p.then_ref(f)
. - Equivalent to
p1.with(p2)
.