constantFunction2<T0, T1, R> function

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

Constant function with 2 arguments.

Implementation

Map2<T0, T1, R> constantFunction2<T0, T1, R>(R value) => (arg0, arg1) => value;