Function combine::parser::combinator::map [] [src]

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).