Compare commits
2 Commits
1785d55796
...
master
Author | SHA1 | Date | |
---|---|---|---|
4928421213 | |||
ca8081f83a |
2
array.go
2
array.go
@ -15,5 +15,5 @@ package op_type
|
||||
type Array interface {
|
||||
[]bool | []string | []int | []int8 | []int16 | []int32 | []int64 |
|
||||
[]uint | []uint8 | []uint16 | []uint32 | []uint64 |
|
||||
[]float32 | []float64
|
||||
[]float32 | []float64 | []any
|
||||
}
|
||||
|
2
base.go
2
base.go
@ -13,5 +13,5 @@ package op_type
|
||||
//
|
||||
// Date : 11:25 2023/6/13
|
||||
type BaseType interface {
|
||||
int | int8 | int16 | int32 | int64 | uint | uint8 | uint16 | uint32 | uint64 | float32 | float64 | bool | string
|
||||
any | int | int8 | int16 | int32 | int64 | uint | uint8 | uint16 | uint32 | uint64 | float32 | float64 | bool | string
|
||||
}
|
||||
|
Reference in New Issue
Block a user