Related to "type-conversions"
bool() function
The bool()
function converts a single value to a boolean.
bytes() function
The bytes()
function converts a single value to bytes.
duration() function
The duration()
function converts a single value to a duration.
float() function
The float()
function converts a single value to a float.
int() function
The int()
function converts a single value to an integer.
string() function
The string()
function converts a single value to a string.
time() function
The time()
function converts a single value to a time.
toBool() function
The toBool()
function converts all values in the _value
column to booleans.
toDuration() function
The toDuration()
function converts all values in the _value
column to durations.
toFloat() function
The toFloat()
function converts all values in the _value
column to floats.
toInt() function
The toInt()
function converts all values in the _value
column to integers.
toString() function
The toString()
function converts all values in the _value
column to strings.
toTime() function
The toTime()
function converts all values in the _value
column to times.
toUInt() function
The toUInt()
function converts all values in the _value
column to UIntegers.
uint() function
The uint()
function converts a single value to a UInteger.
json.encode() function
The json.encode()
function converts a value into JSON bytes.
hex.bytes() function
hex.bytes()
converts a hexadecimal string to bytes.
hex.int() function
hex.int()
converts a hexadecimal string representation of a number to an integer.
hex.string() function
hex.string()
converts a Flux basic type to a hexadecimal string.
hex.uint() function
hex.uint()
converts a hexadecimal string representation of a number to an unsigned integer.
json.parse() function
The json.parse()
function takes JSON data as bytes and returns a value.