partial2 method

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

Implementation

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