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

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

Constant function with 7 arguments.

Implementation

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