Evaluate the Maybe in an async iterable and collect the Just values in an array.
Maybe
Just
This function turns an async iterable of Maybe "inside out". For example, AsyncIterable<Maybe<T>> becomes AsyncMaybe<T[]>.
AsyncIterable<Maybe<T>>
AsyncMaybe<T[]>
Generated using TypeDoc
Evaluate the
Maybe
in an async iterable and collect theJust
values in an array.