FpdartSequenceIterableEither<E, A> extension
Methods
-
leftsEither(
) → List< E> -
Extract all the Left values from a
List<Either<E, A>>
. -
partitionEithersEither(
) → Tuple2< 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 Tuple2. -
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 singleEither<E, List<A>>
.