Changes between Version 15 and Version 16 of TypesOverview
- Timestamp:
- 12/23/10 10:51:36 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TypesOverview
v15 v16 11 11 * number (= decimal, change with -number: option) 12 12 * dynamic (see DynamicType) 13 * Explicit Sizes/Sign13 * Explicit !Sizes/Sign 14 14 * int8, int16, int32, int64 15 15 * uint8, uint16, uint32, uint64 … … 44 44 * See StreamType 45 45 * Working with types at run-time 46 * You can get the type of "x" with "x.getType" 46 * You can get the type of "x" with "x.getType" (library call) or "x.typeOf" (cobra language extension) 47 47 * You can make instances with a type at run-time 48 * t = x. getType48 * t = x.typeOf 49 49 * obj1 = t() 50 50 * obj2 = t(0, 0)