constantFunction1<T1, R> function

Map1<T1, R> constantFunction1<T1, R>(
  1. R value
)

Constant function with 1 positional argument.

Implementation

Map1<T1, R> constantFunction1<T1, R>(R value) => (arg1) => value;