- | Changes the sign. Unary operator. |
+ | Adds two values of type Area. Binary operator. |
- | Subtracts a values of type Area from another value of type Area. Binary operator. |
* | Multiplies a value of type Area by a number of type Int. Binary operator. Returns a value of type Area. |
* | Multiplies a value of type Area by a number of type Real. Binary operator. Returns a value of type Area. |
/ | A binary division operator that divides a number by an integer of type Int. Returns a value of type Area. |
/ | A binary division operator that divides a number of type Area by a number of type Area. Returns a value of type Real. |
<, <=, >, >=, ==, != | Compare two values of type Area: less than, less than or equal to, greater than, greater than or equal to, equal to, not equal to. Binary operators. Return a value of type Logic. |