Crate pusherator
source ·Expand description
Pusherator generics and argument order conventions:
Next
(being the next owned pusherator) should come first in generic arguments.- However
next: Next
innew(...)
arguments should come last. This is so the rest of the arguments appear in the order data flows in. - Any closures
Func
should come before their arguments, so:<Func: Fn(A) -> B, A, B>