Function winnow::multi::many_till

source ·
pub fn many_till<I, O, C, P, E, F, G>(
    f: F,
    g: G
) -> impl FnMut(I) -> IResult<I, (C, P), E>where
    I: Stream,
    C: Accumulate<O>,
    F: Parser<I, O, E>,
    G: Parser<I, P, E>,
    E: ParseError<I>,
👎Deprecated since 0.3.0: Replaced with <code>many_till0</code>
Expand description

WARNING: Deprecated, replaced with many_till0