BNOT operator
Synopsis
This operator
performs a bitwise NOT operation.
Variations
BNOT Number
Performs a bitwise NOT
operation.
Details |
Examples |
Details and examples
Parameters
Number
Specifies a 32-bit integer.
Supported types: Numeric.
Returns
Examples
1. |
The following example returns -2. Note that 1 = 0x01 and -2 =
0xFE.
BNOT
1
|