Simply returns every entry from the source Iterable.
The type of the elements in the source Iterable.
An AsyncOperationFunction that simply returns every entry from the source Iterable.
const result = noopAsync<number>([1, 2, 3]);console.log(result); // [1, 2, 3] Copy
const result = noopAsync<number>([1, 2, 3]);console.log(result); // [1, 2, 3]
Simply returns every entry from the source Iterable.