Toreal
toreal
The toreal function is an alias for todouble. It converts its argument to a double-precision floating point number.
Spec
toreal(arg0) Parameters
arg0 - The value to convert to double. Return Value
A double-precision floating point number. Example
datatable(val:int64)[1, 42]
| extend as_real = toreal(val) | val | as_real |
|---|---|
| 1 | 1.0 |
| 42 | 42.0 |