Related to "type-conversions"
bool() function
bool()
converts a value to a boolean type.
bytes() function
bytes()
converts a string value to a bytes type.
duration() function
duration()
converts a value to a duration type.
float() function
float()
converts a value to a float type.
int() function
int()
converts a value to an integer type.
json.encode() function
json.encode()
converts a value into JSON bytes.
regexp.compile() function
regexp.compile()
parses a string into a regular expression and returns a regexp type that can be used to match against strings.
string() function
string()
converts a value to a string type.
time() function
time()
converts a value to a time type.
toBool() function
toBool()
converts all values in the _value
column to boolean types.
toFloat() function
toFloat()
converts all values in the _value
column to float types.
toInt() function
toInt()
converts all values in the _value
column to integer types.
toString() function
toString()
converts all values in the _value
column to string types.
toTime() function
toTime()
converts all values in the _value
column to time types.
toUInt() function
toUInt()
converts all values in the _value
column to unsigned integer types.
uint() function
uint()
converts a value to an unsigned integer type.
json.parse() function
json.parse()
takes JSON data as bytes and returns a value.