Skip to content

IListResourceOps<A>

extension IListResourceOps<A> on IList<Resource<A>>

Operations available when IList elements are of type Resource.

Methods

parSequence() extension

Resource<IList<A>> parSequence()

Alias for parTraverseResource, using identity as the function parameter.

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

Implementation
dart
Resource<IList<A>> parSequence() => parTraverseResource(identity);

parSequence_() extension

Resource<Unit> parSequence_()

Alias for parTraverseResource_, using identity as the function parameter.

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

Implementation
dart
Resource<Unit> parSequence_() => parTraverseResource_(identity);

sequence() extension

Resource<IList<A>> sequence()

Alias for traverseResource, using identity as the function parameter.

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

Implementation
dart
Resource<IList<A>> sequence() => traverseResource(identity);

sequence_() extension

Resource<Unit> sequence_()

Alias for traverseResource_, using identity as the function parameter.

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

Implementation
dart
Resource<Unit> sequence_() => traverseResource_(identity);