partial method

Function2<B, C, R> partial(
  1. A first
)

Implementation

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