pub fn many0<'a, O>(
combinator: impl Fn(&'a str) -> ParseResult<'a, O>
) -> impl Fn(&'a str) -> ParseResult<'a, Vec<O>>Expand description
Applies the combinator 0 or more times and returns a vector of all the parsed results.
pub fn many0<'a, O>(
combinator: impl Fn(&'a str) -> ParseResult<'a, O>
) -> impl Fn(&'a str) -> ParseResult<'a, Vec<O>>Applies the combinator 0 or more times and returns a vector of all the parsed results.