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,
    7. T7 seventh,
    8. T8 eighth,
    9. T9 ninth,
    )
)

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

Implementation

R map<R>(
        R Function(T1 first, T2 second, T3 third, T4 fourth, T5 fifth,
                T6 sixth, T7 seventh, T8 eighth, T9 ninth)
            callback) =>
    callback($1, $2, $3, $4, $5, $6, $7, $8, $9);