Tuple8EitherOps<EE, A, B, C, D, E, F, G, H> extension

Functions available on a tuple of Eithers.

on

Methods

mapN<I>(Function8<A, B, C, D, E, F, G, H, I> fn) Either<EE, I>
Applies fn to the values of each respective tuple member if all values are a Right. If any item is a Left, the first Left encountered will be returned.
tupled() Either<EE, (A, B, C, D, E, F, G, H)>
If all items of this tuple are a Right, the respective items are turned into a tuple and returned as a Right. If any item is a Left, the first Left encountered is returned.