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

View File

@ -8,12 +8,8 @@
package op_type
// Dict ...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 20:18 2023/4/15
type Dict interface {
map[string]interface{} | map[interface{}]interface{} | map[int64]int64 | map[float64]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