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

Map7<T1, T2, T3, T4, T5, T6, T7, R> constantFunction7<T1, T2, T3, T4, T5, T6, T7, R>(
  1. R value
)

Constant function with 7 positional arguments.

Implementation

Map7<T1, T2, T3, T4, T5, T6, T7, R>
    constantFunction7<T1, T2, T3, T4, T5, T6, T7, R>(R value) =>
        (arg1, arg2, arg3, arg4, arg5, arg6, arg7) => value;