pub fn fold_many1_right<'slice, 'src: 'slice, Lang: Language, C, E, IE: RowanNomError<Lang>>(
cont: impl Parser<Input<'slice, 'src, Lang>, C, IE>,
end: impl Parser<Input<'slice, 'src, Lang>, Children<Lang, E>, IE>,
merge: impl FnMut(Children<Lang, E>, C) -> Children<Lang, E>,
) -> impl FnMut(Input<'slice, 'src, Lang>) -> IResult<'slice, 'src, Lang, E, IE>where
Lang::Kind: 'static,Expand description
Similar to fold_many1, but folds right instead of left
For parsing right-associative expressions, fold_many1_right_expr is more appropriate