Function som_parser_core::combinators::all
source · pub fn all<'a, A, I>(
parsers: &'a mut [impl Parser<A, I>]
) -> impl Parser<Vec<A>, I> + 'a
Expand description
Applies every parser in a slice, from left to right, and returns the output from all of them. If one parser fails, the whole sequence is considered failed.