Function combine::parser::sequence::then [−][src]
pub fn then<Input, P, F, N>(p: P, f: F) -> Then<P, F> where
Input: Stream,
F: FnMut(P::Output) -> N,
P: Parser<Input>,
N: Parser<Input>,
Expand description
Equivalent to p.then(f)
.