Function som_parser_core::combinators::sequence
source · 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.