gmath/number.go
2022-08-21 13:49:12 +02:00

10 lines
188 B
Go

package gmath
type Number interface {
Integer | ~float32 | ~float64
}
type Integer interface {
~int | ~int8 | ~int16 | ~int32 | ~int64 | ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64
}