[−][src]Function combine::parser::combinator::flat_map
pub fn flat_map<P, F, B>(p: P, f: F) -> FlatMap<P, F> where
P: Parser,
F: FnMut(P::Output) -> Result<B, <P::Input as StreamOnce>::Error>,
Equivalent to p.flat_map(f)
.