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).
p.flat_map(f)