pub fn separated_list_trailing1<PASep, PA, I, O1, O2, E>(
    sep: PASep,
    f: PA
) -> impl FnMut(I) -> Result<(I, Vec<O2>), Err<E>>where
    I: Clone + InputLength,
    PASep: Parser<I, O1, E>,
    PA: Parser<I, O2, E>,
    E: ParseError<I>,
Expand description

Similiar to nom::multi::separated_list1, but allows a trailing separator.