 |
ALPHA-VISION® Functions: aci.And
|
aci.And
SUMMARY
Bit by bit AND.
SYNTAX
aci.And(
<value1>,
<value2>)
ARGUMENTS
- value1 (type:integer)
-
- value2 (type:integer)
-
RETURN VALUES
- 1 (type:integer)
-
Returns the result of the AND operation.
EXAMPLES
assert(aci.And(0xf0f0f0f0, 0xf0f0f0f0) == 0xf0f0f0f0)
assert(aci.And(0xf0f0f0f0, 0x0f0f0f0f) == 0)
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