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

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

Constant function with 6 arguments.

Implementation

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