Combining Array.filterMap and Array.flatMap in Effect Typescript

Is there something that combines Array.filterMap and Array.flatMap ? I assume Array.filterMap is the canonical way to avoid Array.fromIterable(Iterable.map(....)) Where I'd have used Array.from(xs, x=> ...) using the ES Array
Was this page helpful?