Warning! This page documents an earlier version of Flux, which is no longer actively developed. Flux v0.50 is the most recent stable version of Flux.
The uint()
function converts a single value to a UInteger.
Function type: Type conversion
Output data type: UInteger
uint(v: "4")
Parameters
v
The value to convert.
Examples
from(bucket: "sensor-data")
|> filter(fn:(r) =>
r._measurement == "camera" and
)
|> map(fn:(r) => uint(v: r.exposures))