Package: effect
Module: Micro
Effectfully filter the elements of the provided iterable.
Use the concurrency option to control how many elements are processed
concurrently.
Signature
declare const filter: <A, E, R>(iterable: Iterable<A>, f: (a: NoInfer<A>) => Micro<boolean, E, R>, options?: { readonly concurrency?: Concurrency | undefined; readonly negate?: boolean | undefined; }) => Micro<Array<A>, E, R>
Since v3.4.0