From 02ff3c3833adbab8f8bb1eb4a8c9c19d56d48e25 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:06:31 +0800 Subject: [PATCH] update array --- array.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/array.go b/array.go index 3d9289c..585c4f2 100644 --- a/array.go +++ b/array.go @@ -13,5 +13,8 @@ package op_type // // Date : 16:34 2023/4/17 type Array[number Number, dict Dict] interface { - []interface{} | []bool | []string | []number | []dict + []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{} }