Skip to content

RillTuple3Ops<T1, T2, T3>

extension RillTuple3Ops<T1, T2, T3> on Rill<Record>

Provides additional functions on a Rill of a 3 element tuple.

Methods

collectN() extension

Rill<T4> collectN<T4>(Option<T4> Function(T1, T2, T3) f)

Available on Rill<O>, provided by the RillTuple3Ops<T1, T2, T3> extension

Implementation
dart
Rill<T4> collectN<T4>(Function3<T1, T2, T3, Option<T4>> f) => collect(f.tupled);

evalMapN() extension

Rill<T4> evalMapN<T4>(IO<T4> Function(T1, T2, T3) f)

Available on Rill<O>, provided by the RillTuple3Ops<T1, T2, T3> extension

Implementation
dart
Rill<T4> evalMapN<T4>(Function3<T1, T2, T3, IO<T4>> f) => evalMap(f.tupled);

evalTapN() extension

Rill<Record> evalTapN<T4>(IO<T4> Function(T1, T2, T3) f)

Available on Rill<O>, provided by the RillTuple3Ops<T1, T2, T3> extension

Implementation
dart
Rill<(T1, T2, T3)> evalTapN<T4>(Function3<T1, T2, T3, IO<T4>> f) => evalTap(f.tupled);

filterN() extension

Rill<Record> filterN(bool Function(T1, T2, T3) f)

Available on Rill<O>, provided by the RillTuple3Ops<T1, T2, T3> extension

Implementation
dart
Rill<(T1, T2, T3)> filterN(Function3<T1, T2, T3, bool> f) => filter(f.tupled);

filterNotN() extension

Rill<Record> filterNotN(bool Function(T1, T2, T3) f)

Available on Rill<O>, provided by the RillTuple3Ops<T1, T2, T3> extension

Implementation
dart
Rill<(T1, T2, T3)> filterNotN(Function3<T1, T2, T3, bool> f) => filterNot(f.tupled);

flatMapN() extension

Rill<T4> flatMapN<T4>(Rill<T4> Function(T1, T2, T3) f)

Available on Rill<O>, provided by the RillTuple3Ops<T1, T2, T3> extension

Implementation
dart
Rill<T4> flatMapN<T4>(Function3<T1, T2, T3, Rill<T4>> f) => flatMap(f.tupled);

mapN() extension

Rill<T4> mapN<T4>(T4 Function(T1, T2, T3) f)

Available on Rill<O>, provided by the RillTuple3Ops<T1, T2, T3> extension

Implementation
dart
Rill<T4> mapN<T4>(Function3<T1, T2, T3, T4> f) => map(f.tupled);

parEvalMapN() extension

Rill<T4> parEvalMapN<T4>(int maxConcurrent, IO<T4> Function(T1, T2, T3) f)

Available on Rill<O>, provided by the RillTuple3Ops<T1, T2, T3> extension

Implementation
dart
Rill<T4> parEvalMapN<T4>(
  int maxConcurrent,
  Function3<T1, T2, T3, IO<T4>> f,
) => parEvalMap(maxConcurrent, f.tupled);

parEvalMapUnboundedN() extension

Rill<T4> parEvalMapUnboundedN<T4>(IO<T4> Function(T1, T2, T3) f)

Available on Rill<O>, provided by the RillTuple3Ops<T1, T2, T3> extension

Implementation
dart
Rill<T4> parEvalMapUnboundedN<T4>(Function3<T1, T2, T3, IO<T4>> f) =>
    parEvalMapUnbounded(f.tupled);

parEvalMapUnorderedN() extension

Rill<T4> parEvalMapUnorderedN<T4>(
  int maxConcurrent,
  IO<T4> Function(T1, T2, T3) f,
)

Available on Rill<O>, provided by the RillTuple3Ops<T1, T2, T3> extension

Implementation
dart
Rill<T4> parEvalMapUnorderedN<T4>(
  int maxConcurrent,
  Function3<T1, T2, T3, IO<T4>> f,
) => parEvalMapUnordered(maxConcurrent, f.tupled);

parEvalMapUnorderedUnboundedN() extension

Rill<T4> parEvalMapUnorderedUnboundedN<T4>(IO<T4> Function(T1, T2, T3) f)

Available on Rill<O>, provided by the RillTuple3Ops<T1, T2, T3> extension

Implementation
dart
Rill<T4> parEvalMapUnorderedUnboundedN<T4>(Function3<T1, T2, T3, IO<T4>> f) =>
    parEvalMapUnorderedUnbounded(f.tupled);