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