|
|
|
|
|
- Bitwise operation
- Bitwise operator
BitwiseAND (Function) In french: ETBinaire
Warning
From version 2024, BinaryAND is kept for backward compatibility. This function has been replaced with BitwiseAND.
Returns the result of a bitwise AND operation performed between two values.
ResBitwiseAND = BitwiseAND(6, 6)
ResBitwiseAND = BitwiseAND(6, 2)
Syntax
<Result> = BitwiseAND(<Value 1> , <Value 2>)
<Result>: Integer Result of the logical AND operation. <Value 1>: Integer First value to be evaluated. <Value 2>: Integer Second value to be evaluated. Remarks BitwiseAND performs the bitwise operation on <Value1> and <Value2> based on the following table: - BitwiseAND is equivalent to the & bitwise operator. For more details, see Bitwise operators.
- BitwiseAND returns a precise result when you pass 4-byte integers. Passing 8-byte integers causes an overflow.
- The & bitwise operator is used for 8-byte integer operations.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|