Function winnow::multi::separated_list1

source ·
pub fn separated_list1<I, O, C, O2, E, F, G>(
    sep: G,
    f: F
) -> impl FnMut(I) -> IResult<I, C, E>where
    I: Stream,
    C: Accumulate<O>,
    F: Parser<I, O, E>,
    G: Parser<I, O2, E>,
    E: ParseError<I>,
👎Deprecated since 0.3.0: Replaced with <code>separated1</code> (note the parameter swap)
Expand description

WARNING: Deprecated, replaced with separated1 (note the parameter swap)