IListResourceOps<A>
Operations available when IList elements are of type Resource.
Methods
parSequence() extension
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
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
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
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);