Files
hiscaler-gox/type.go

18 lines
242 B
Go
Raw Normal View History

2025-04-08 19:16:39 +02:00
package gox
type Int interface {
~int | ~int8 | ~int16 | ~int32 | ~int64
}
type UInt interface {
~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64
}
type Float interface {
~float32 | ~float64
}
type Number interface {
Int | UInt | Float
}