many1

Function many1 

Source
pub fn many1<'a, O>(
    combinator: impl Fn(&'a str) -> ParseResult<'a, O>,
) -> impl Fn(&'a str) -> ParseResult<'a, Vec<O>>
Expand description

Applies the combinator at least 1 time, but maybe more and returns a vector of all the parsed results.