Package: effect
Module: List
Partition a list into two lists, where the first list contains all elements
for which the specified function returned a Left, and the second list
contains all elements for which the specified function returned a Right.
Signature
declare const partitionMap: { <A, B, C>(f: (a: A) => Either.Either<C, B>): (self: List<A>) => [left: List<B>, right: List<C>]; <A, B, C>(self: List<A>, f: (a: A) => Either.Either<C, B>): [left: List<B>, right: List<C>]; }
Since v2.0.0