constantFunction3<T1, T2, T3, R> function

Map3<T1, T2, T3, R> constantFunction3<T1, T2, T3, R>(
  1. R value
)

Constant function with 3 positional arguments.

Implementation

Map3<T1, T2, T3, R> constantFunction3<T1, T2, T3, R>(R value) =>
    (arg1, arg2, arg3) => value;