partial method

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

Implementation

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