Function map
fn map<I, O, E: ParseError<I>, F, G>(parser: F, f: G) -> impl Parser<I, Output = O, Error = E>
where
F: Parser<I, Error = E>,
G: FnMut(<F as Parser<I>>::Output) -> O
Maps a function on the result of a parser.
use ;
use digit1;
use map;
#