Skip to content

Tuple7OptionOps<T1, T2, T3, T4, T5, T6, T7>

extension Tuple7OptionOps<T1, T2, T3, T4, T5, T6, T7> on Record

Provides additional functions on a tuple of 7 Options.

Properties

tupled extension no setter

Option<Record> get tupled

If all items of this tuple are a Some, the respective items are turned into a tuple and returned as a Some. If any item is a

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

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

Methods

mapN() extension

Option<T8> mapN<T8>(T8 Function(T1, T2, T3, T4, T5, T6, T7) fn)

Applies fn to the values of each respective tuple member if all values are a Some. If any item is a None, None will be returned.

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

Implementation
dart
Option<T8> mapN<T8>(Function7<T1, T2, T3, T4, T5, T6, T7, T8> fn) => tupled.map(fn.tupled);