uncurry method

T uncurry(
  1. A a,
  2. B b
)

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) => this(a)(b);