Returns an AsyncOperationFunction that skips entries of the source Iterable while the parameter function returns true.
The type of the elements in the source Iterable.
The function to use to filter the entries.
An AsyncOperationFunction that skips entries of the source Iterable while the parameter function returns true.
const result = skipWhileAsync<number>([1, 2, 3], (value) => value < 2);console.log(result); // [2, 3] Copy
const result = skipWhileAsync<number>([1, 2, 3], (value) => value < 2);console.log(result); // [2, 3]
Returns an AsyncOperationFunction that skips entries of the source Iterable while the parameter function returns true.