Operators
From REALbasicWiki
Operators represent all the operations: +, -, *, /, \, mod, ^, not, and, or, (comparison operators: =, <, <=, <>, >, >=).
Operators can be customized for any class (i.e. overloaded). See the Overloading operators tutorial for more information.
This is the list of available operators. Note that many of them have a Right variant (i.e. Operator_Add has a Operator_AddRight variant):
- Operator_Add(Right)
- Operator_And(Right)
- Operator_Divide(Right)
- Operator_IntegerDivide(Right)
- Operator_Modulo(Right)
- Operator_Multiply(Right)
- Operator_Not
- Operator_Or(Right)
- Operator_Power(Right)
- Operator_Substract(Right)
- Operator_Negate
- Operator_Compare
See Overloading operators, a tutorial about operators.
