Not (Function)

Gets the negation result of the expression.

Not (<Expression>)

Parameters
<Expression>
The expression to be subjected to the negation calculation (integer).

Return Value
Return the calculation result.

Description
The value given by the <Expression> will be a 32-digit binary number and each bit will be given a reversed value.
Specify a value from -2147483648 to 2147483647 in the <Expression>.
When the value of the <Expression> is a double-precision type, the fractional part is handled as a rounded value.

Example
Get the negation of Variable X.
      X&=0

        XX&=Not X&

The result is as follows:
XX&=-1