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:13:04 +08:00
|
|
|
type Array[num Number, dict Dict] interface {
|
|
|
|
[]interface{} | []bool | []string | []num | []dict
|
2023-04-17 16:36:53 +08:00
|
|
|
}
|