map<R> method

R map<R>(
  1. R callback(
    1. T1 first,
    2. T2 second,
    3. T3 third,
    4. T4 fourth,
    5. T5 fifth,
    6. T6 sixth,
    )
)

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

Implementation

R map<R>(
        R Function(
                T1 first, T2 second, T3 third, T4 fourth, T5 fifth, T6 sixth)
            callback) =>
    callback($1, $2, $3, $4, $5, $6);