Transforms array of opts into an array where Nones are omitted and Somes are unwrapped.
catOpts([opt(1), opt(null)]) // [1] Copy
catOpts([opt(1), opt(null)]) // [1]
Generated using TypeDoc
Transforms array of opts into an array where Nones are omitted and Somes are unwrapped.