uncurry method

Function2<A, B, R> uncurry()

Implementation

Function2<A, B, R> uncurry() => (A first, B second) => this(first)(second);