Skip to content

Tuple6EitherOps<E, T1, T2, T3, T4, T5, T6>

extension Tuple6EitherOps<E, T1, T2, T3, T4, T5, T6> on Record

Provides additional functions on tuple with 6 Eithers.

Properties

tupled extension no setter

Either<E, Record> get tupled

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.

Available on Record, provided by the Tuple6EitherOps<E, T1, T2, T3, T4, T5, T6> extension

Implementation
dart
Either<E, (T1, T2, T3, T4, T5, T6)> get tupled =>
    init.tupled.flatMap((x) => last.map(x.appended));

Methods

mapN() extension

Either<E, T7> mapN<T7>(T7 Function(T1, T2, T3, T4, T5, T6) fn)

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.

Available on Record, provided by the Tuple6EitherOps<E, T1, T2, T3, T4, T5, T6> extension

Implementation
dart
Either<E, T7> mapN<T7>(Function6<T1, T2, T3, T4, T5, T6, T7> fn) => tupled.map(fn.tupled);