ToDouble
Not available in this language yet.
Not available in this language yet.
ToDouble( value )
ToDouble( value )
Not available in this language yet.
ToDouble( value )
Description
The ToDouble
function converts a value to a double-precision numeric
value, if possible.
Attempting to convert a value to a double-precision numeric value which has no numeric representation results in an "invalid argument" error.
Host languages have varying support for double-precision numeric
values. Within Fauna, double-precision numeric values are
stored and operated on as 64-bit, IEEE 754, double-precision float
values. The host language you use may affect how the result of
ToDouble can be interpreted.
|
Parameters
Argument | Type | Definition and Requirements |
---|---|---|
|
Any |
The value to attempt to convert to a double-precision numeric value. |
Examples
The following query calls ToDouble
multiple times to demonstrate
variations on the kinds of values that ToDouble
accepts:
Not available in this language yet.
Not available in this language yet.
System.out.println(
client.query(
Arr(
ToDouble(1234.5678),
ToDouble(1234),
ToDouble("123.456789"),
ToDouble("0not-a-number")
)
).get());
[1234.5678, 1234.0, 123.456789, 0.0]
client.query([
q.ToDouble(1234.5678),
q.ToDouble(1234),
q.ToDouble('123.456789'),
q.ToDouble('0not-a-number'),
])
.then((ret) => console.log(ret))
[ 1234.5678, 1234, 123.456789, 0 ]
Not available in this language yet.
println(Await.result(
client.query(
Arr(
ToDouble(1234.5678),
ToDouble(1234),
ToDouble("123.456789"),
ToDouble("0not-a-number"),
)
),
5.seconds
))
[1234.5678, 1234.0, 123.456789, 0.0]
Is this article helpful?
Tell Fauna how the article can be improved:
Visit Fauna's forums
or email docs@fauna.com
Thank you for your feedback!