map<R> method

R map<R>(
  1. R callback(
    1. T1 first,
    2. T2 second
    )
)

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

Implementation

R map<R>(R Function(T1 first, T2 second) callback) => callback($1, $2);