[][src]Function nom::multi::many0

pub fn many0<I, O, E, F>(f: F) -> impl Fn(I) -> IResult<I, Vec<O>, E> where
    I: Clone + PartialEq,
    F: Fn(I) -> IResult<I, O, E>,
    E: ParseError<I>, 

Repeats the embedded parser until it fails and returns the results in a Vec.

Arguments

  • f The parser to apply.