Function som_parser_core::combinators::any
source · pub fn any<'a, A, I: Clone>(
parsers: &'a mut [impl Parser<A, I>]
) -> impl Parser<A, I> + 'a
Expand description
Tries every parser in a slice, from left to right, and returns the output of the first succeeding one.