Function nom::multi::fold_many1[][src]

pub fn fold_many1<I, O, E, F, G, R>(
    f: F,
    init: R,
    g: G
) -> impl FnMut(I) -> IResult<I, R, E> where
    I: Clone + PartialEq,
    F: Parser<I, O, E>,
    G: FnMut(R, O) -> R,
    E: ParseError<I>,
    R: Clone

Applies a parser until it fails and accumulates the results using a given function and initial value. Fails if the embedded parser does not succeed at least once.

Arguments

  • f The parser to apply.
  • init The initial value.
  • g The function that combines a result of f with the current accumulator.
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
    }
  )(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))));