Supertype: 
Real
		
This type does not define any properties.
Table 5. Operations
| Return type | Name | Description | 
|---|---|---|
| List | upTo(Integer) | returns a List of Integers starting with the value of the target expression, up to the value of the specified Integer, incremented by one, e.g. '1.upTo(5)' evaluates to {1,2,3,4,5} | 
| Boolean | >=(Integer) | |
| Boolean | ==(Integer) | |
| Boolean | !=(Integer) | |
| List | upTo(Integer,Integer) | returns a List of Integers starting with the value of the target expression, up to the value of the first paramter, incremented by the second parameter, e.g. '1.upTo(10, 2)' evaluates to {1,3,5,7,9} | 
| Integer | -(Integer) | |
| Integer | +(Integer) | |
| Boolean | <=(Integer) | |
| Boolean | <(Integer) | |
| Integer | *(Integer) | |
| Integer | -() | |
| Boolean | >(Integer) | |
| Integer | /(Integer) |