BitNot
Not available in this language yet.
BitNot( value )
BitNot( value )
BitNot( value )
Not available in this language yet.
Not available in this language yet.
Not available in this language yet.
BitNot( value )
Description
The BitNot
function returns the
Two’s Complement of a
number. The argument must be a number, and fractional values are
truncated before the operation is applied.
Parameters
Argument | Type | Definition and Requirements |
---|---|---|
|
Number |
A single value to take the two’s complement. |
Examples
The query below executes an array of independent bitwise NOT operations and returns results in the result array. The result array position matches the position in the execution array.
System.out.println(
client.query( Arr(
BitNot(Value(0)),
BitNot(Value(1)),
BitNot(Value(7))
)).get());
[
-1,
-2,
-8
]
Was this article helpful?
We're sorry to hear that.
Tell us how we can improve!
documentation@fauna.com
Thank you for your feedback!