 |
ALPHA-VISION® Functions: aci.Not
|
aci.Not
SUMMARY
Bit by bit negation.
SYNTAX
aci.Not(
<value>)
ARGUMENTS
- value (type:integer)
-
The value to be negated
RETURN VALUES
- 1 (type:number)
-
Returns the result of the negation.
EXAMPLES
assert(aci.Not(0x0f0f0f0f) == 0xf0f0f0f0)
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