pub fn map<Input, P, F, B>(p: P, f: F) -> Map<P, F> where Input: Stream, P: Parser<Input>, F: FnMut(P::Output) -> B,
Equivalent to p.map(f).
p.map(f)