BinaryOp Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Kinds of binary operators.
public enum BinaryOp
type BinaryOp =
Public Enum BinaryOp
- Inheritance
-
BinaryOp
Fields
| Name | Value | Description |
|---|---|---|
| Or | 0 | Logical disjunction (||). |
| And | 1 | Logical conjunction (&&). |
| Concat | 2 | String concatenation (&). |
| Add | 3 | Arithmetic addition (+). |
| Mul | 4 | Arithmetic multiplication (*). |
| Div | 5 | Arithmetic division (/). |
| Power | 6 | Arithmetic exponentiation (^). |
| Equal | 7 | Equal to comparison (=). |
| NotEqual | 8 | Not equal to comparison (<>). |
| Less | 9 | Less than comparison (<). |
| LessEqual | 10 | Less than or equal to comparison (<=). |
| Greater | 11 | Greater than comparison (>). |
| GreaterEqual | 12 | Greater than or equal comparison (>=). |
| In | 13 | Substring (case-insensitive) or collection/table membership test. |
| Exactin | 14 | Substring (case-sensitive) or collection/table membership test. |
| Error | 15 | Binary operator parsing error. |