constantFunction2<T1, T2, R> function

Map2<T1, T2, R> constantFunction2<T1, T2, R>(
  1. R value
)

Constant function with 2 positional arguments.

Implementation

Map2<T1, T2, R> constantFunction2<T1, T2, R>(R value) => (arg1, arg2) => value;