flip method

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

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

Implementation

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