partial3 method

Function0<R> partial3(
  1. A first,
  2. B second,
  3. C third
)

Implementation

Function0<R> partial3(A first, B second, C third) =>
    () => this(first, second, third);