Returns an OperationFunction that yields array entries of the source Iterable transformed using the function.
The type of the elements in the source Iterable.
The type of the elements in the transformed Iterable.
The function to use to transform the entries.
An OperationFunction that yields array entries of the source Iterable transformed using the function.
const result = arrayMap<number, string>([1, 2, 3], (value) => value.toString());console.log(result); // ["1", "2", "3"] Copy
const result = arrayMap<number, string>([1, 2, 3], (value) => value.toString());console.log(result); // ["1", "2", "3"]
Returns an OperationFunction that yields array entries of the source Iterable transformed using the function.