Created
Some checks failed
Go / build (push) Failing after 7s

This commit is contained in:
scheibling
2025-04-08 19:16:39 +02:00
commit b4eb50ab55
63 changed files with 7333 additions and 0 deletions

17
type.go Normal file
View File

@@ -0,0 +1,17 @@
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
}