map<R> method
- @inlineVm
- @inlineJs
- R callback(
- T1,
- T2,
- T3
Converts this sequence to a new type R
with the provided callback
.
Implementation
@inlineVm
@inlineJs
R map<R>(R Function(T1, T2, T3) callback) => callback(first, second, third);