uncurry method

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

Uncurries the function, returning a new function that takes multiple arguments instead of a single one, and acts as a normal function that returns a single value.

Implementation

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