From de991130e395d74157f35133df55f5a15c8e4d7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=99=BD=E8=8C=B6=E6=B8=85=E6=AC=A2?= Date: Mon, 17 Apr 2023 17:13:04 +0800 Subject: [PATCH] update --- array.go | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/array.go b/array.go index bebcb48..ef43f85 100644 --- a/array.go +++ b/array.go @@ -12,9 +12,6 @@ package op_type // Author : go_developer@163.com<白茶清欢> // // Date : 16:34 2023/4/17 -type Array interface { - []interface{} | []bool | []string | int | int8 | int16 | int32 | int64 | - uint | uint8 | uint16 | uint32 | uint64 | - float32 | float64 | - map[string]interface{} | map[interface{}]interface{} | map[int64]int64 | map[float64]interface{} +type Array[num Number, dict Dict] interface { + []interface{} | []bool | []string | []num | []dict }