FQL v4 will be decommissioned on June 30, 2025. Ensure that you complete your migration from FQL v4 to FQL v10 by that date. For more details, review the migration guide. Contact support@fauna.com with any questions. |
ToNumber
This reference topic applies to FQL v4. Go to this page for the latest FQL v10 reference topics. |
ToNumber( value )
to_number( value )
ToNumber( value )
ToNumber( value )
ToNumber( value )
Description
The ToNumber
function converts a value to a numeric literal, if
possible.
Attempting to convert a value to a number which has no numeric representation results in an "invalid argument" error.
Parameters
Parameter | Type | Definition and Requirements |
---|---|---|
|
Any |
The value to attempt to convert to a Number. |
Examples
The following query executes an array of independent ToNumber
operations and returns the results in an array. The result array
position matches the execution array position. The first operation
converts a floating point literal to a number. The second operation
takes an integer literal and converts it to a number. The last operation
converts a string to a number.
[ 1234.5678, 1234, 123 ]
[1234.5678, 1234, 123]
[1234.5678 1234 123]
Arr(DoubleV(1234.5678), LongV(1234), LongV(123))
[ 1234.5678, 1234, 123 ]
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!