partial2 method

Function1<C, R> partial2(
  1. A first,
  2. B second
)

Implementation

Function1<C, R> partial2(A first, B second) =>
    (C third) => this(first, second, third);