Mapper<T, R> typedef
Mapper<T, R> =
R Function(T)
Maps a value of type T
to R
.
Implementation
typedef Mapper<T, R> = R Function(T);
Maps a value of type T
to R
.
typedef Mapper<T, R> = R Function(T);