Returns an AsyncOperationFunction that yields the value parameter then the entries of the source Iterable.
The type of the elements in the source Iterable.
The values to yield before the entries of the source Iterable.
An AsyncOperationFunction that yields the value parameter then the entries of the source Iterable.
const result = startWithAsync<number>([1, 2, 3], 2);console.log(result); // [2, 1, 2, 3] Copy
const result = startWithAsync<number>([1, 2, 3], 2);console.log(result); // [2, 1, 2, 3]
Returns an AsyncOperationFunction that yields the value parameter then the entries of the source Iterable.