This function turns an array or a tuple literal of Maybe "inside out".
For example:
Maybe<T>[] becomes Maybe<T[]>[Maybe<T1>, Maybe<T2>] becomes Maybe<[T1, T2]>Evaluate the Maybe in an iterable and collect the Just values in an
array.
This function turns an iterable of Maybe "inside out". For example,
Iterable<Maybe<T>> becomes Maybe<T[]>.
Generated using TypeDoc
Evaluate the
Maybein an array or a tuple literal and collect theJustvalues in an equivalent structure.