Skip to content

IListIOOps<A>

extension IListIOOps<A> on IList<IO<A>>

Operations avaiable when IList elements are of type IO.

Methods

parSequence() extension

IO<IList<A>> parSequence()

Alias for parTraverseIO, using identity as the function parameter.

Available on IList<A>, provided by the IListIOOps<A> extension

Implementation
dart
IO<IList<A>> parSequence() => parTraverseIO(identity);

parSequence_() extension

IO<Unit> parSequence_()

Alias for parTraverseIO_, using identity as the function parameter.

Available on IList<A>, provided by the IListIOOps<A> extension

Implementation
dart
IO<Unit> parSequence_() => parTraverseIO_(identity);

sequence() extension

IO<IList<A>> sequence()

Alias for traverseIO, using identity as the function parameter.

Available on IList<A>, provided by the IListIOOps<A> extension

Implementation
dart
IO<IList<A>> sequence() => traverseIO(identity);

sequence_() extension

IO<Unit> sequence_()

Alias for traverseIO_, using identity as the function parameter.

Available on IList<A>, provided by the IListIOOps<A> extension

Implementation
dart
IO<Unit> sequence_() => traverseIO_(identity);