Function fold_many1

fn fold_many1<I, E, F, G, H, R>(parser: F, init: H, g: G) -> impl Parser<I, Output = R, Error = E>
where
    I: Clone + Input,
    F: Parser<I, Error = E>,
    G: FnMut(R, <F as Parser<I>>::Output) -> R,
    H: FnMut() -> R,
    E: ParseError<I>

Repeats the embedded parser, calling g to gather the results.

This stops on Err::Error if there is at least one result. To instead chain an error up, see [cut][crate::combinator::cut].

Arguments

Note: If the parser passed to many1 accepts empty inputs (like alpha0 or digit0), many1 will return an error, to prevent going into an infinite loop.

# use nom::{Err, error::{Error, ErrorKind}, Needed, IResult, Parser};
use nom::multi::fold_many1;
use nom::bytes::complete::tag;

fn parser(s: &str) -> IResult<&str, Vec<&str>> {
  fold_many1(
    tag("abc"),
    Vec::new,
    |mut acc: Vec<_>, item| {
      acc.push(item);
      acc
    }
  ).parse(s)
}

assert_eq!(parser("abcabc"), Ok(("", vec!["abc", "abc"])));
assert_eq!(parser("abc123"), Ok(("123", vec!["abc"])));
assert_eq!(parser("123123"), Err(Err::Error(Error::new("123123", ErrorKind::Many1))));
assert_eq!(parser(""), Err(Err::Error(Error::new("", ErrorKind::Many1))));