get optionals from list(list of optionals)present values Type: For any types t([@apply Optional(t)]) -> [t]

Gets all the present values from the list of optionals, in the same order as the original list. All None items are discarded.

ExamplesClick an example to insert it
get optionals from list([Optional\Is(17), Optional\None, Optional\Is(42), Optional\None])[17, 42]
get optionals from list([Optional\None])[]