You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The documentation for chumsky::pratt::postfix suggests the expected function has the signature impl Fn(Op, Atom, &mut MapExtra<'src, '_, I, E>) -> O when it in fact has the following signature impl Fn(Atom, Op, &mut MapExtra<'src, '_, I, E>) -> Atom.
Same goes for prefix which actual signature is impl Fn(Op, Atom, &mut MapExtra<'src, '_, I, E>) -> Atom not impl impl Fn(Atom, Op, &mut MapExtra<'src, '_, I, E>) -> O.
The text was updated successfully, but these errors were encountered:
The documentation for
chumsky::pratt::postfix
suggests the expected function has the signatureimpl Fn(Op, Atom, &mut MapExtra<'src, '_, I, E>) -> O
when it in fact has the following signatureimpl Fn(Atom, Op, &mut MapExtra<'src, '_, I, E>) -> Atom
.Same goes for prefix which actual signature is
impl Fn(Op, Atom, &mut MapExtra<'src, '_, I, E>) -> Atom
notimpl impl Fn(Atom, Op, &mut MapExtra<'src, '_, I, E>) -> O
.The text was updated successfully, but these errors were encountered: