Changes between Version 9 and Version 10 of Doc/panc/dml/operators
- Timestamp:
- Mar 2, 2007, 10:54:32 PM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Doc/panc/dml/operators
v9 v10 2 2 [[TracNav]] 3 3 4 The operators available in the pan data manipulation language are very similar to those in the C language.4 The operators available in the pan Data Manipulation Language (DML) are very similar to those in the C language. The following tables summarize the DML operators. The valid primitive types for each operator are indicated. Those marked with "number" will take either long or double arguments. In the case of binary operators, the result will be promoted to a double if the operands are mixed. 5 5 6 6 Unary DML Operators 7 8 7 || + || number || preserves sign of argument || 9 8 || - || number || changes sign of argument || … … 37 36 || <= || string || lexical less-than-or-equal || 38 37 38 Operator Precedence 39 || | | || lowest || 40 || && || || 41 || | || || 42 || !^ || || 43 || & || || 44 || ==, != || || 45 || <, <=, >, >= || || 46 || + (binary), - (binary) || || 47 || *, /, % || || 48 || + (unary), - (unary), !, ~ || highest || 39 49 40 50 51 52 53 54 55 56