map<R> method
- @preferInline
- R callback(
- T1,
- T2,
- T3
Converts this Record with 3 positional values to a new type R using
the provided callback with 3 positional arguments.
Implementation
@preferInline
R map<R>(R Function(T1, T2, T3) callback) => callback($1, $2, $3);