FpdartSequenceIterableEither<E, A> extension

on

Methods

leftsEither() List<E>
Extract all the Left values from a List<Either<E, A>>.
partitionEithersEither() → (List<E>, List<A>)
Extract all the Left and Right values from a List<Either<E, A>> and return them in two partitioned List inside a record.
rightsEither() List<A>
Extract all the Right values from a List<Either<E, A>>.
sequenceEither() Either<E, List<A>>
Convert a List<Either<E, A>> to a single Either<E, List<A>>.