Next: Function Call, Previous: Data Classes, Up: Expressions [Contents][Index]
Operators are instructions like "add" and "multiply" that combine one or more values (operands) into one other value. Below is a list of operators that are available in LUX. Besides those listed, also the pointer operator & (Pointers) is available.
• Unary Minus: | How to add a minus sign to a value | |
• Unary Plus: | How to add a plus sign to a value | |
• Binary Arithmetic: | Standard arithmetic on two values | |
• Binary Logic: | Logical operations on two values | |
• Binary Conditionals: | Logical operations with conditional evaluation | |
• Binary Relationals: | Determining relations between values | |
• Binary Bounding: | Restricting values to specific ranges | |
• Structure/List Element: | How to select elements from structures | |
• Concatenation: | How to combine elements | |
• Subscripts: | How to select elements from arrays |