Function combine::combinator::flat_map [] [src]

pub fn flat_map<P, F, B>(p: P, f: F) -> FlatMap<P, F> where P: Parser, F: FnMut(P::Output) -> Result<B, ParseError<P::Input>>

Equivalent to p.flat_map(f).