map<R> method

R map<R>(
  1. R callback(
    1. T1 first
    )
)

Applies the values of this tuple to an 1-ary function.

Implementation

R map<R>(R Function(T1 first) callback) => callback($1);