BitXor
Not available in this language yet.
BitXor( value_1, value_2, ... )
BitXor( value_1, value_2, ... )
BitXor( value_1, value_2, ... )
Not available in this language yet.
Not available in this language yet.
Not available in this language yet.
BitXor( value_1, value_2, ... )
Description
The BitXor
function returns the bit to the result if the bit exists in
only one argument. The arguments must be numbers, and the fractional
portion is truncated before the XOR operation is applied. The result is
the bitwise exclusive OR of all of the arguments.
Parameters
Argument | Type | Definition and Requirements |
---|---|---|
|
List of Numbers |
A single value or a list of values to bitwise exclusive OR. |
Examples
The query below executes an array of independent bitwise exclusive OR 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(
BitXor(Value(0), Value(0)),
BitXor(Value(1), Value(0)),
BitXor(Value(1), Value(1)),
BitXor(Value(6), Value(3))
)).get());
client.query([
q.BitXor(0, 0),
q.BitXor(1, 0),
q.BitXor(1, 1),
q.BitXor(6, 3),
])
.then((ret) => console.log(ret))
println(Await.result(
client.query(
Arr(
BitXor(0, 0),
BitXor(1, 0),
BitXor(1, 1),
BitXor(6, 3)
)
),
5.seconds
))
Not available in this language yet.
Not available in this language yet.
Not available in this language yet.
Not available in this language yet.
Not available in this language yet.
[0, 1, 0, 5]
[ 0, 1, 0, 5 ]
[0, 1, 0, 5]
Was this article helpful?
We're sorry to hear that.
Tell us how we can improve!
documentation@fauna.com
Thank you for your feedback!