Wiki

Changes between Version 15 and Version 16 of TypesOverview

Show
Ignore:
Timestamp:
12/23/10 10:51:36 (14 years ago)
Author:
hopscc
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TypesOverview

    v15 v16  
    1111     * number  (= decimal, change with -number: option) 
    1212     * dynamic (see DynamicType) 
    13    * Explicit Sizes/Sign 
     13   * Explicit !Sizes/Sign 
    1414     * int8, int16, int32, int64 
    1515     * uint8, uint16, uint32, uint64 
     
    4444   * See StreamType 
    4545 * 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) 
    4747   * You can make instances with a type at run-time 
    48      * t = x.getType 
     48     * t = x.typeOf 
    4949     * obj1 = t() 
    5050     * obj2 = t(0, 0)