github.com/go-board/x-go@v0.1.2-0.20220610024734-db1323f6cb15/types/types.go (about)

     1  package types
     2  
     3  type Interface interface{}
     4  
     5  type Byte byte
     6  
     7  type Int int
     8  type Int64 int
     9  type Int32 int32
    10  type Int16 int16
    11  type Int8 int8
    12  
    13  type Uint uint
    14  type Uint64 uint
    15  type Uint32 uint32
    16  type Uint16 uint16
    17  type Uint8 uint8
    18  
    19  type String string
    20  
    21  type Float64 float64
    22  type Float32 float32
    23  
    24  type Bool bool
    25  
    26  type Any = interface{}
    27  
    28  type AnySlice = []Any
    29  type InterfaceSlice = AnySlice
    30  
    31  type ByteSlice = []byte
    32  
    33  type IntSlice = []int
    34  type Int64Slice = []int64
    35  type Int32Slice = []int32
    36  type Int16Slice = []int16
    37  type Int8Slice = []int8
    38  
    39  type UintSlice = []uint
    40  type Uint64Slice = []uint64
    41  type Uint32Slice = []uint32
    42  type Uint16Slice = []uint16
    43  type Uint8Slice = []uint8
    44  
    45  type StringSlice = []string
    46  
    47  type Float64Slice = []float64
    48  type Float32Slice = []float32
    49  
    50  type BoolSlice = []bool
    51  
    52  type ComparableSlice = []Comparable