TypedList constant

int const TypedList

Implementation

static const int Null = 0x0,
    False = 0x1,
    True = 0x2,
    NotModified = 0x3,
    UInt8 = 0x8,
    Int8 = 0x9,
    Char8 = 0xA,
    Int16 = 0x10,
    UInt16 = 0x11,
    Char16 = 0x12,
    Int32 = 0x18,
    UInt32 = 0x19,
    Float32 = 0x1A,
    Resource = 0x1B,
    ResourceLocal = 0x1C,
    Int64 = 0x20,
    UInt64 = 0x21,
    Float64 = 0x22,
    DateTime = 0x23,
    Int128 = 0x28,
    UInt128 = 0x29,
    Float128 = 0x2A,
    RawData = 0x40,
    String = 0x41,
    List = 0x42,
    ResourceList = 0x43,
    RecordList = 0x44,
    Map = 0x45,
    MapList = 0x46,
    //Tuple = 0x47,

    Record = 0x80,
    TypedList = 0x81,
    TypedMap = 0x82,
    Tuple = 0x83,
    Enum = 0x84,
    Constant = 0x85;