partitionEithersEither method

Tuple2<List<E>, List<A>> partitionEithersEither()

Extract all the Left and Right values from a List<Either<E, A>> and return them in two partitioned List inside Tuple2.

Implementation

Tuple2<List<E>, List<A>> partitionEithersEither() =>
    Either.partitionEithers(toList());