constantFunction6<T1, T2, T3, T4, T5, T6, R> function

Map6<T1, T2, T3, T4, T5, T6, R> constantFunction6<T1, T2, T3, T4, T5, T6, R>(
  1. R value
)

Constant function with 6 positional arguments.

Implementation

Map6<T1, T2, T3, T4, T5, T6, R> constantFunction6<T1, T2, T3, T4, T5, T6, R>(
        R value) =>
    (arg1, arg2, arg3, arg4, arg5, arg6) => value;