flip method

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

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

Implementation

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