Function map_parser
fn map_parser<I, O, E: ParseError<I>, F, G>(parser: F, applied_parser: G) -> impl Parser<I, Output = O, Error = E>
where
F: Parser<I, Error = E>,
G: Parser<<F as Parser<I>>::Output, Output = O, Error = E>
Applies a parser over the result of another one.
# use ;
use digit1;
use take;
use map_parser;
#