| |
|
 |
|
| |
|
bitwise NOT Operator |
Language
reference |
|
| Syntax
result = ~ expression
|
|
| Description:
The bitwise Not operator inverts the bit
values of any variable and sets the corresponding bit in
result according to the following table:
| Bit
in expression |
Bit
in result |
| 0 |
1 |
| 1 |
0 |
|
|
| See also:
OR operator, XOR
operator, AND operator,
NOT operator |
|
| A operator bitwise NOT is a part
of kernel LC Basic. |
|
|