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