get optional or(optional value, default value)result Type: For any types t(@apply Optional(t), t) -> t

Gets the value from inside an optional value, if it is present. If the value is blank, returns the second parameter instead.

ExamplesClick an example to insert it
get optional or(Optional\Is(17), 12)17
get optional or(Optional\None, 12)12