Files
hiscaler-gox/type.go
scheibling b4eb50ab55
Some checks failed
Go / build (push) Failing after 7s
Created
2025-04-08 19:16:39 +02:00

18 lines
242 B
Go

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
}