Changes between Version 6 and Version 7 of PrimitiveTypeMembers
- Timestamp:
- 02/06/09 12:14:04 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PrimitiveTypeMembers
v6 v7 1 You can invoke methods on primitive values such as `c.isUpper`. These include mathematical methods such as `x.round`, `x.round(decimals)`, `a.min(b)`, `x.sin`, `x.truncate`, etc. 1 = Primitive Type Members = 2 3 You can invoke methods on primitive values (that the libraries provide as static methods on the Type) such as `c.isUpper`. 4 These include mathematical methods such as `x.round`, `x.round(decimals)`, `a.min(b)`, `x.sin`, `x.truncate`, etc. 2 5 3 6 You can also invoke methods on primitive types such as `decimal.parse(s)`.