Map elements in the data array by applying a function to each.
(f: ArrayFunc<T, U>)
| 33 | |
| 34 | /** Map elements in the data array by applying a function to each. */ |
| 35 | map<U>(f: ArrayFunc<T, U>): DataArray<U>; |
| 36 | /** Map elements in the data array by applying a function to each, then flatten the results to produce a new array. */ |
| 37 | flatMap<U>(f: ArrayFunc<T, U[]>): DataArray<U>; |
| 38 | /** Mutably change each value in the array, returning the same array which you can further chain off of. */ |
no outgoing calls
no test coverage detected