github.com/urso/go-structform@v0.0.2/gotype/types.yml (about)

     1  data.numTypes: [
     2      uint, uint8, uint16, uint32, uint64,
     3      int, int8, int16, int32, int64,
     4      float32, float64
     5    ]
     6  
     7  data.primitiveTypes: [
     8      bool,
     9      string,
    10      uint, uint8, uint16, uint32, uint64,
    11      int, int8, int16, int32, int64,
    12      float32, float64
    13    ]
    14  
    15  data.mapTypes:
    16    AnyType: 'interface{}'
    17    ByteType: uint8
    18    StringType: string
    19    BoolType: bool
    20    ZeroType: 'interface{}'
    21    IntType: int
    22    Int8Type: int8
    23    Int16Type: int16
    24    Int32Type: int32
    25    Int64Type: int64
    26    UintType: uint
    27    Uint8Type: uint8
    28    Uint16Type: uint16
    29    Uint32Type: uint32
    30    Uint64Type: uint64
    31    Float32Type: float32
    32    Float64Type: float64
    33  
    34  data.mapReflTypes:
    35    AnyType: tInterface
    36    ByteType: tByte
    37    StringType: tString
    38    BoolType: tBool
    39    ZeroType: tInterface
    40    IntType: tInt
    41    Int8Type: tInt8
    42    Int16Type: tInt16
    43    Int32Type: tInt32
    44    Int64Type: tInt64
    45    UintType: tUint
    46    Uint8Type: tUint8
    47    Uint16Type: tUint16
    48    Uint32Type: tUint32
    49    Uint64Type: tUint64
    50    Float32Type: tFloat32
    51    Float64Type: tFloat64