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 filterMap: <A, B, E, R>(iterable: Iterable<A>, f: (a: NoInfer<A>) => Micro<Option.Option<B>, E, R>, options?: { readonly concurrency?: Concurrency | undefined; }) => Micro<Array<B>, E, R>
Since v3.4.0