Enum constant

int const Enum

Implementation

static const int Void = 0x0,
    Dynamic = 0x1,
    Bool = 0x2,
    UInt8 = 0x3,
    Int8 = 0x4,
    Char = 0x5,
    Int16 = 0x6,
    UInt16 = 0x7,
    Int32 = 0x8,
    UInt32 = 0x9,
    Float32 = 0xA,
    Int64 = 0xB,
    UInt64 = 0xC,
    Float64 = 0xD,
    DateTime = 0xE,
    Int128 = 0xF,
    UInt128 = 0x10,
    Decimal = 0x11,
    String = 0x12,
    RawData = 0x13,
    Resource = 0x14,
    Record = 0x15,
    List = 0x16,
    Map = 0x17,
    Enum = 0x44,
    TypedResource = 0x45, // Followed by UUID
    TypedRecord = 0x46, // Followed by UUID
    TypedList = 0x48, // Followed by element type
    Tuple2 = 0x50, // Followed by element type
    TypedMap = 0x51, // Followed by key type and value type
    Tuple3 = 0x58,
    Tuple4 = 0x60,
    Tuple5 = 0x68,
    Tuple6 = 0x70,
    Tuple7 = 0x78;