Skip to content

Tuple10ResourceOps<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>

extension Tuple10ResourceOps<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> on Record

Provides additional functions on a tuple of 10 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 Tuple10ResourceOps<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> extension

Implementation
dart
Resource<(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)> 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 Tuple10ResourceOps<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> extension

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

Methods

mapN() extension

Resource<T11> mapN<T11>(
  T11 Function(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10) 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 Tuple10ResourceOps<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> extension

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

parMapN() extension

Resource<T11> parMapN<T11>(
  T11 Function(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10) 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 Tuple10ResourceOps<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10> extension

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