Evaluate the Either in an async iterable and collect the Right values in an array.
Either
Right
This function turns an async iterable of Either "inside out". For example, AsyncIterable<Either<E, T>> becomes AsyncEither<E, T[]>.
AsyncIterable<Either<E, T>>
AsyncEither<E, T[]>
Generated using TypeDoc
Evaluate the
Either
in an async iterable and collect theRight
values in an array.