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.
array.toBool() function
array.toBool()
converts all values in an array to booleans.
array.toDuration() function
array.toDuration()
converts all values in an array to durations.
array.toFloat() function
array.toFloat()
converts all values in an array to floats.
array.toInt() function
array.toInt()
converts all values in an array to integers.
array.toString() function
array.toString()
converts all values in an array to strings.
array.toTime() function
array.toTime()
converts all values in an array to times.
array.toUInt() function
array.toUInt()
converts all values in an array to unsigned integers.
dynamic.asArray() function
dynamic.asArray()
converts a dynamic value into an array of dynamic elements.
dynamic.dynamic() function
dynamic.dynamic()
wraps a value so it can be used as a dynamic
value.
dynamic.jsonEncode() function
dynamic.jsonEncode()
converts a dynamic value into JSON bytes.
dynamic.jsonParse() function
dynamic.jsonParse()
takes JSON data as bytes and returns dynamic values.
iox.sqlInterval() function
iox.sqlInterval()
converts a duration value to a SQL interval string.
json.parse() function
json.parse()
takes JSON data as bytes and returns a value.