This function turns an array or a tuple literal of AsyncEitherLike
"inside out". For example:
AsyncEither<E, T>[] becomes AsyncEither<E, T[]>[AsyncEither<E, T1>, AsyncEither<E, T2>] becomes AsyncEither<E, [T1, T2]>Concurrently evaluate the Either or AsyncEitherLike in an iterable
and collect the Right values in an array.
This function turns an iterable of AsyncEitherLike "inside out". For
example, Iterable<AsyncEither<E, T>> becomes AsyncEither<E, T[]>.
Generated using TypeDoc
Concurrently evaluate the
EitherorAsyncEitherLikein an array or a tuple literal and collect theRightvalues in an equivalent structure.