apply method

F8<B, C, D, E, F, G, H, I, T> apply(
  1. A a
)

Partially applies the first argument to the function without currying it.

Essentially acts as a shortcut of currying a function, applying the first argument and immediately uncurrying it back.

Implementation

F8<B, C, D, E, F, G, H, I, T> apply(A a) =>
    (b, c, d, e, f, g, h, i) => this(a, b, c, d, e, f, g, h, i);