Initial commit

This commit is contained in:
tiny-craft
2023-06-27 15:53:29 +08:00
parent 219f2582bf
commit f8882d4eea
118 changed files with 14251 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
package utils
type Hashable interface {
~int | ~int8 | ~int16 | ~int32 | ~int64 | ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr | ~float32 | ~float64 | ~string
}
type SignedNumber interface {
~int | ~int8 | ~int16 | ~int32 | ~int64 | ~float32 | ~float64
}
type UnsignedNumber interface {
~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64
}