2023-04-15 20:20:42 +08:00
|
|
|
// Package op_type ...
|
|
|
|
//
|
|
|
|
// Description : op_type ...
|
|
|
|
//
|
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
|
|
//
|
|
|
|
// Date : 2023-04-15 20:10
|
|
|
|
package op_type
|
|
|
|
|
|
|
|
// Uint ...
|
|
|
|
//
|
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
|
|
//
|
|
|
|
// Date : 20:10 2023/4/15
|
|
|
|
type Uint interface {
|
2023-10-12 15:16:43 +08:00
|
|
|
uint | uint8 | uint16 | uint32 | uint64
|
2023-04-15 20:20:42 +08:00
|
|
|
}
|