map<R> method

  1. @inlineVm
  2. @inlineJs
R map<R>(
  1. R callback(
    1. T1,
    2. T2,
    3. T3,
    4. T4,
    5. T5,
    6. T6,
    7. T7,
    8. T8,
    )
)

Converts this Record with 8 positional values to a new type R using the provided callback with 8 positional arguments.

Implementation

@inlineVm
@inlineJs
R map<R>(R Function(T1, T2, T3, T4, T5, T6, T7, T8) callback) =>
    callback($1, $2, $3, $4, $5, $6, $7, $8);