|
|
|
|
|
- Bitwise operation
- Bitwise operator
BitwiseNOT (Function) In french: NONBinaire
Warning
From version 2024, BinaryNOT is kept for backward compatibility. This function has been replaced with BitwiseNOT.
Returns the result of a bitwise NOT operation performed on a value. Reminder The logical NOT operation is equivalent to "One's complement". The logical negation is applied to ALL the bits of the value.
ResNONBinaire = BitwiseNOT(6)
ResNONBinaire = BitwiseNOT(2)
Syntax
<Result> = BitwiseNOT(<Value>)
<Result>: Integer Result of the logical NOT operation. <Value>: Integer Value to evaluate. Remarks BitwiseNOT performs the bitwise operation on <Value> based on the following table: BitwiseNOT is equivalent to the ~ bitwise operator. For more details, see Bitwise operators.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|