constantFunction8<T1, T2, T3, T4, T5, T6, T7, T8, R> function

Map8<T1, T2, T3, T4, T5, T6, T7, T8, R> constantFunction8<T1, T2, T3, T4, T5, T6, T7, T8, R>(
  1. R value
)

Constant function with 8 positional arguments.

Implementation

Map8<T1, T2, T3, T4, T5, T6, T7, T8, R>
    constantFunction8<T1, T2, T3, T4, T5, T6, T7, T8, R>(R value) =>
        (arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) => value;