and_then

Function and_then 

Source
pub fn and_then<Stream, Context, ParserA, ParserB, F>(
    parser: ParserA,
    f: F,
) -> AndThen<ParserA, F>
where ParserA: Parse<Stream, Context>, ParserB: Parse<Stream, Context>, F: Fn(ParserA::Token) -> ParserB,
Expand description

Function style version of crate::Utils::and_then