number.go
315 Bytes
package uttype
// Int 整型
type Int interface {
int | int8 | int16 | int32 | int64 | float32 | float64
}
// Uint 无符号整型
type Uint interface {
uint | uint8 | uint16 | uint32
}
// Float 浮点
type Float interface {
float32 | float64
}
// Number 数字
type Number interface {
Int | Uint | Float
}