op_type/array.go

21 lines
508 B
Go
Raw Normal View History

2023-04-17 16:36:53 +08:00
// Package op_type ...
//
// Description : op_type ...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 2023-04-17 16:34
package op_type
// Array ...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 16:34 2023/4/17
2023-04-17 17:08:34 +08:00
type Array interface {
2023-04-17 17:06:31 +08:00
[]interface{} | []bool | []string | int | int8 | int16 | int32 | int64 |
2023-04-17 17:08:34 +08:00
uint | uint8 | uint16 | uint32 | uint64 |
float32 | float64 |
map[string]interface{} | map[interface{}]interface{} | map[int64]int64 | map[float64]interface{}
2023-04-17 16:36:53 +08:00
}