|
|
|
|
- Bitwise calculation
- Bitwise operator
BinaryXOR (Function) In french: OUExclusifBinaire Returns the result of the (bitwise) logical exclusive OR between two values. // Retrieve the result of a logical exclusive OR ResBinaryXOR = BinaryXOR(6, 6) // Returns 0 ResBinaryXOR = BinaryXOR(6, 2) // Returns 4 Syntax
<Result> = BinaryXOR(<Value 1> , <Value 2>)
<Result>: Integer Result of the logical exclusive OR. <Value 1>: Integer First value to test. <Value 2>: Integer Second value to test. Remarks BinaryXOR performs the bitwise calculation between <Value 1> and <Value 2> based on the following table: - BinaryXOR is equivalent to the || bitwise operator for 4-byte integers. For more details, see Bitwise operators.
- BinaryXOR returns a precise result when you pass 4-byte integers. Passing 8-byte integers causes an overflow.
- The || operator can be used to perform bitwise operations between 8-byte integers.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|