This function turns an array or a tuple literal of Ior
or
AsyncIorLike
"inside out". For example:
AsyncIor<E, T>[]
becomes AsyncIor<E, T[]>
[AsyncIor<E, T1>, AsyncIor<E, T2>]
becomes AsyncIor<E, [T1, T2]>
Concurrently evaluate the Ior
or AsyncIorLike
in an iterable and
collect the right-hand values in an array.
This function turns an iterable of Ior
or AsyncIorLike
"inside out".
For example, Iterable<AsyncIor<E, T>>
becomes AsyncIor<E, T[]>
.
Generated using TypeDoc
Concurrently evaluate the
Ior
orAsyncIorLike
in an array or a tuple literal and collect the right-hand values in an equivalent structure.