map<U> method
Returns an array of the same size as self, with function f applied to each element in order.
Implementation
Arr<U> map<U>(U Function(T) f) {
return Arr._(_list.map(f).toList(growable: false));
}
Returns an array of the same size as self, with function f applied to each element in order.
Arr<U> map<U>(U Function(T) f) {
return Arr._(_list.map(f).toList(growable: false));
}