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

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

Constant function with 5 arguments.

Implementation

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