|
|
|
|
|
- Bitwise operation
- Bitwise operator
BitwiseOR (Function) In french: OUBinaire
Warning
From version 2024, BinaryOR is kept for backward compatibility. This function has been replaced with BitwiseOR.
Returns the result of the bitwise OR operation performed between two values.
ResBitwiseOR = BitwiseOR(6, 6)
ResBitwiseOR = BitwiseOR(6, 2)
Syntax
<Result> = BitwiseOR(<Value 1> , <Value 2>)
<Result>: Integer Result of the logical OR operation. <Value 1>: Integer First value to be evaluated. <Value 2>: Integer Second value to be evaluated. Remarks BitwiseOR performs the bitwise operation on <Value 1> and <Value 2> based on the following table: - BitwiseOR is equivalent to the | bitwise operator for 4-byte integers. For more details, see Bitwise operators.
- BitwiseOR 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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|