The type of the input items.
The array of data to filter, or a promise that resolves to one.
An async function applied to each item to determine if it should be kept.
Optionaloptions: FilterOptions<I>Configuration options, including cancellation token and concurrency limit.
A cancellable handle that resolves to an array of the items that passed the predicate.
Filters an array of data asynchronously using a predicate function. Allows controlling the maximum concurrency of the predicate execution.
The type of the input items.
The array of data to filter, or a promise that resolves to one.
An async function applied to each item to determine if it should be kept.
Optionaloptions: FilterOptions<I>Configuration options, including cancellation token and concurrency limit.
A cancellable handle that resolves to an array of the items that passed the predicate.
Filters an array of data asynchronously using a predicate function. Allows controlling the maximum concurrency of the predicate execution.