[][src]Function combine::parser::sequence::then

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>, 

Equivalent to p.then(f).