16 lines
328 B
Go
16 lines
328 B
Go
// Package op_type ...
|
|
//
|
|
// Description : op_type ...
|
|
//
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
//
|
|
// Date : 2023-04-15 20:17
|
|
package op_type
|
|
|
|
// Dict ...
|
|
type Dict interface {
|
|
map[string]any | map[any]any | map[int64]int64 | map[float64]any
|
|
}
|
|
|
|
type MapSlice[K string, V []int64 | []uint64 | []string | []any] map[K]V
|