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