mirror of
https://github.com/duke-git/lancet.git
synced 2026-02-10 07:42:27 +08:00
7 lines
186 B
Go
7 lines
186 B
Go
package myconstraints
|
|
|
|
|
|
type Number interface {
|
|
int | int8 | int16 | int32 | int64 | uint | uint8 | uint16 | uint32 | uint64 | uintptr | float32 | float64 | complex64 | complex128
|
|
}
|