1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-03-01 00:35:28 +08:00

checkout v2 branch for generics migration

This commit is contained in:
dudaodong
2022-01-07 17:48:00 +08:00
parent a8996933bf
commit 1343683b08
4 changed files with 35 additions and 50 deletions

View File

@@ -0,0 +1,6 @@
package myconstraints
type Number interface {
int | int8 | int16 | int32 | int64 | uint | uint8 | uint16 | uint32 | uint64 | uintptr | float32 | float64 | complex64 | complex128
}