Function monch::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.