BinaryOperator Enum
From The Oxygene Language Wiki
This is a Language topic
Feel free to add your notes to this topic below.
NOTE: This is article is a work in progress and not finished yet.
Unless you are the author, please do not make changes or rely yet on information presented in this article.
When done, the author should change the first line from wip to wipr to show that the page is ready for review.
If you have suggestions for this page, please send them to us: email.
The BinaryOperator enum is used to find binary overloads and in expressions (values) to define the operator used between the operand.
Namespace: Cirrus Values
Enum Values
| | |
|---|---|
| Add | Add operation + |
| And | And operation AND |
| As | AS operation |
| Div | Divide operation div or / |
| Equal | Equals operation = |
| Greater | Greater than operation > |
| GreaterEqual | Greater than or equal operation >= |
| Implies | Implies operation: a implies b |
| In | In operation: IN |
| IntDiv | Integer division |
| Is | IS operation |
| IsNot | IS NOT operation |
| Less | Less than operation < |
| LessEqual | Less than or equal to operation <= |
| Mod | Modulus operation MOD |
| Mul | Multiply operation * |
| NotEqual | Not equal operation <> |
| NotIn | Not IN operation |
| Or | bitwise or binary OR operation |
| Shl | Shift left bitwise |
| Shr | Shift right bitwise |
| Sub | Subtract operation - |
| Xor | Xor bitwise operation |
See Also
- Cirrus
- External Links:
- Prism Aspects to Help with Monobjc Development (RemObjects Blogs)
- BinaryValue Class
Area: Oxygene Language
Compiler version: Oxygene 5
Language Glossary — Keywords — Types — FAQ — How To