flip method

T flip(
  1. E e,
  2. D d,
  3. C c,
  4. B b,
  5. A a,
)

Returns a new function with flipped arguments, reversing their order.

Implementation

T flip(E e, D d, C c, B b, A a) => this(a, b, c, d, e);