base type 支持any

This commit is contained in:
白茶清欢 2023-10-14 16:12:53 +08:00
parent 22512f0921
commit 2c7002f57a

View File

@ -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
}