Const
Returns an AsyncOperationFunction that skips the given amount of entries of the source Iterable.
The type of the elements in the source Iterable.
The amount of entries to skip.
An AsyncOperationFunction that skips the given amount of entries of the source Iterable.
const result = skipAsync<number>([1, 2, 3], 2);console.log(result); // [3] Copy
const result = skipAsync<number>([1, 2, 3], 2);console.log(result); // [3]
Returns an AsyncOperationFunction that skips the given amount of entries of the source Iterable.