gmath/number.go

6 lines
151 B
Go
Raw Normal View History

2022-08-16 12:23:03 +02:00
package gmath
type Number interface {
~int | ~int8 | ~int16 | ~int32 | ~int64 | ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~float32 | ~float64
}