pub fn sequence<A, B, I>(
    fst: impl Parser<A, I>,
    snd: impl Parser<B, I>
) -> impl Parser<(A, B), I>
Expand description

Sequences two parsers, one after the other, collecting both results.