Manual

143
not
not
Description
Performs a logical complement or bit-wise ones-complement operation on a boolean or integer
value.
Usage
AnyBool not NotBool
AnyInt not NotInt
AnyBool Boolean. Operand for the logical complement operation.
NotBool Boolean. Result of the logical complement operation.
AnyInt Integer. Operand for the bit-wise ones-complement operation.
NotInt Integer. Result of the bit-wise ones-complement operation.
Comments
The following table lists the results of performing the logical complement operation a boolean
value.
AnyBool false true
Result
true false
The following table lists the results for each bit position when performing the bit-wise ones-
complement operation on an integer value.
AnyInt 01
Result
10