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