filterMap<Z> abstract method

HKT<KT, Z> filterMap<Z>(
  1. Option<Z> f(
    1. A a
    )
)

Map over a data structure and filter based on a Option predicate.

Implementation

HKT<KT, Z> filterMap<Z>(Option<Z> Function(A a) f);