partitionMap<Z, Y> abstract method

Separated<KT, Z, Y> partitionMap<Z, Y>(
  1. Either<Z, Y> f(
    1. A a
    )
)

Partition a data structure based on an Either predicate.

Implementation

Separated<KT, Z, Y> partitionMap<Z, Y>(Either<Z, Y> Function(A a) f);