curry property

Map1<T1, R> curry

Converts a function with 1 positional arguments into a sequence of 1 functions taking a single argument.

Implementation

Map1<T1, R> get curry => (T1 arg1) => this(arg1);