Function winnow::multi::fold_many1
source · pub fn fold_many1<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>,
👎Deprecated since 0.4.2: Replaced with
combinator::fold_repeat1
Expand description
Deprecated, replaced by combinator::fold_repeat1