constantFunction4<T1, T2, T3, T4, R> function

Map4<T1, T2, T3, T4, R> constantFunction4<T1, T2, T3, T4, R>(
  1. R value
)

Constant function with 4 positional arguments.

Implementation

Map4<T1, T2, T3, T4, R> constantFunction4<T1, T2, T3, T4, R>(R value) =>
    (arg1, arg2, arg3, arg4) => value;