Function filter_map

Source
pub fn filter_map<Stream, Context, Parser, TokenSecond, F>(
    parser: Parser,
    f: F,
) -> FilterMap<Parser, F>
where Parser: Parse<Stream, Context>, F: Fn(Parser::Token) -> Option<TokenSecond>, Context: Contexting<UtilsAtom<Stream>>,
Expand description

Function style version of crate::Utils::filter_map