This commit is contained in:
白茶清欢 2023-10-12 15:16:43 +08:00
parent 77239f63c0
commit 22512f0921
2 changed files with 2 additions and 2 deletions

2
int.go
View File

@ -13,5 +13,5 @@ package op_type
//
// Date : 20:07 2023/4/15
type Int interface {
int | int8 | int16 | int32 | int64 | rune
int | int8 | int16 | int32 | int64
}

View File

@ -13,5 +13,5 @@ package op_type
//
// Date : 20:10 2023/4/15
type Uint interface {
uint | uint8 | uint16 | uint32 | uint64 | byte
uint | uint8 | uint16 | uint32 | uint64
}