Skip to content

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

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

Provides additional functions on a tuple of 7 Resources.

Properties

parTupled extension no setter

Resource<Record> get parTupled

Creates a new Resource that will return the tuple of all items if they all evaluate successfully. If any item fails or is canceled, the first instance encountered will be returned. Items are evaluated asynchronously.

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

Implementation
dart
Resource<(T1, T2, T3, T4, T5, T6, T7)> get parTupled =>
    Resource.both(init.parTupled, last).map((t) => t.$1.appended(t.$2));

tupled extension no setter

Resource<Record> get tupled

Creates a new Resource that will return the tuple of all items if they all evaluate successfully. If any item fails or is canceled, the first instance encountered will be returned. Each item is evaluated synchronously.

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

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

Methods

mapN() extension

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

Creates a new Resource that applies fn to the values of each respective tuple member if all Resources succeed. If any item fails or is canceled, the first instance encountered will be returned. Each item is evaluated synchronously.

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

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

parMapN() extension

Resource<T8> parMapN<T8>(T8 Function(T1, T2, T3, T4, T5, T6, T7) fn)

Creates a new Resource that applies fn to the values of each respective tuple member if all Resources succeed. If any item fails or is canceled, the first instance encountered will be returned. Each item is evaluated synchronously.

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

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