Standard Library: Conversion functions
[float: value]
→ float
or empty
Attempts to convert value
to a float
value and returns the result.
If the conversion fails, returns empty
value.
[int: value]
→ int
or empty
Attempts to convert value
to an int
value and returns the reuslt.
If the conversion fails, returns empty
value.
[string: value]
→ string
or empty
Attempts to convert value
to a string
value and returns the result.
If the conversion fails, returns empty
value.