get optional(optional value)inner value Type: For any types t(@apply Optional(t)) -> t

Gets the value from inside an optional value, if it is present. If the value is blank, gives an error. If you want to supply a value in this case, use get optional or(..).

ExamplesClick an example to insert it
get optional(Optional\Is(17))17
get optional(Optional\None)error