<< Click to Display Table of Contents >> Navigation: Explain™ Control Language > Explain™ fundamentals > Operators |
Operators fall into the following groups:
•A or B (logical inclusive or)
•A and B (logical and)
•A xor B (logical exclusive or)
•A eq B (equal)
•A ne B (not equal)
•A gt B (greater than)
•A lt B (less than)
•A ge B (greater than or equal to)
•A le B (less than or equal to)
•A >> B (shift right by B bits)
•A << B (shift left by B bits)
•A + B (add)
•A - B (subtract)
•A * B (multiply)
•A / B (divide or modulo)
•A % B (remainder)
•notA (logical not)
•-A (negate)
•A (identity)
The identity operator is included for completeness. |