 |
ALPHA-VISION® Bit Operations: NotBits
|
NotBits
SUMMARY
NotBits - Inverts the bits of the given argument
SYNTAX
NotBits(
<arg>);
ARGUMENTS
- arg (type:integer)
-
The value to invert.
DESCRIPTION
Stack
- Missing arguments are taken from the stack (and removed from there).
- The result is pushed onto the stack.
Effect
Inverts the bits of the given argument, whereby there are interpreted as
integer numbers:
NOT arg
EXAMPLES
//Stack before (1 Element):
//0xff880011
NotBits();
//Stack afterwards (1 Element):
//0x0077ffee
Syntax Notation
- [aaa]
- aaa is optional (zero or one occurences)
- (aaa|bbb)
- aaa exclusive or bbb
- (aaa)*
- aaa may occur indefinitely often or may be omitted
- (aaa)+
- aaa may occur indefinitely often but at least once
- (aaa)m..n
- aaa may occur from m to n times