Function winnow::combinator::fold_repeat

source ยท
pub fn fold_repeat<I, O, E, F, G, H, R>(
    range: impl Into<Range>,
    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: ParserError<I>,
๐Ÿ‘ŽDeprecated since 0.5.36: Replaced with repeat(...).fold(...)
Expand description

Deprecated, replaced with Repeat::fold