feat: update code

This commit is contained in:
2025-10-13 10:46:01 +08:00
parent 4928421213
commit da007da2fb
4 changed files with 8 additions and 28 deletions

9
int.go
View File

@ -8,10 +8,11 @@
package op_type
// Int int类型
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 20:07 2023/4/15
type Int interface {
int | int8 | int16 | int32 | int64
}
// Uint uint类型
type Uint interface {
uint | uint8 | uint16 | uint32 | uint64
}