Function winnow::multi::fold_many0
source · pub fn fold_many0<I, O, E, F, G, H, R>(
f: F,
init: H,
g: G
) -> impl Parser<I, R, E>where
I: Stream,
F: Parser<I, O, E>,
G: FnMut(R, O) -> R,
H: FnMut() -> R,
E: ParseError<I>,Expand description
Repeats the embedded parser, calling g to gather the results.
This stops on ErrMode::Backtrack. To instead chain an error up, see
cut_err.
Arguments
fThe parser to apply.initA function returning the initial value.gThe function that combines a result offwith the current accumulator.
Warning: if the parser passed in accepts empty inputs (like alpha0 or digit0), many0 will
return an error, to prevent going into an infinite loop
Example
use winnow::multi::fold_many0;
use winnow::bytes::tag;
fn parser(s: &str) -> IResult<&str, Vec<&str>> {
fold_many0(
"abc",
Vec::new,
|mut acc: Vec<_>, item| {
acc.push(item);
acc
}
).parse_next(s)
}
assert_eq!(parser("abcabc"), Ok(("", vec!["abc", "abc"])));
assert_eq!(parser("abc123"), Ok(("123", vec!["abc"])));
assert_eq!(parser("123123"), Ok(("123123", vec![])));
assert_eq!(parser(""), Ok(("", vec![])));