constantFunction5<T1, T2, T3, T4, T5, R> function

Map5<T1, T2, T3, T4, T5, R> constantFunction5<T1, T2, T3, T4, T5, R>(
  1. R value
)

Constant function with 5 positional arguments.

Implementation

Map5<T1, T2, T3, T4, T5, R> constantFunction5<T1, T2, T3, T4, T5, R>(R value) =>
    (arg1, arg2, arg3, arg4, arg5) => value;