uncurry method

Function3<A, B, C, R> uncurry()

Implementation

Function3<A, B, C, R> uncurry() =>
    (A first, B second, C third) => this(first)(second)(third);