many0

Function many0 

Source
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.