Returns an AsyncOperationFunction that yields the inner entries of array entries of the source Iterable.
The type of the elements in the source Iterable.
An AsyncOperationFunction that yields the inner entries of array entries of the source Iterable.
const result = flatAsync<number>([[1, 2], [3, 4]]);console.log(result); // [1, 2, 3, 4] Copy
const result = flatAsync<number>([[1, 2], [3, 4]]);console.log(result); // [1, 2, 3, 4]
Returns an AsyncOperationFunction that yields the inner entries of array entries of the source Iterable.