Function map

Source
pub fn map<Stream, Context, Parser, TokenSecond, F>(
    parser: Parser,
    f: F,
) -> Map<Parser, F>
where Parser: Parse<Stream, Context>, F: Fn(Parser::Token) -> TokenSecond,
Expand description

Function style version of crate::utils::Utils::map