Binary NOT
|
Signature |
|---|
|
Binary_Not(expression) |
|
Description |
|---|
|
Inverts each bit of the input. If expression = 0b00001111, then `BIT_NOT expression = 0b11110000`. |
|
Result |
|---|
|
Bitwise inversion of expression. |
|
Arguments |
|
|---|---|
|
expression |
An expression which is treated as a binary number. |