constantFunction1<T0, R> function

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

Constant function with 1 argument.

Implementation

Map1<T0, R> constantFunction1<T0, R>(R value) => (arg0) => value;