pub fn map<A, B, I>(
    parser: impl Parser<A, I>,
    func: impl Fn(A) -> B
) -> impl Parser<B, I>
Expand description

Transforms the output value of a parser.