完成map包装类型 - key是否存在

This commit is contained in:
2024-11-06 18:40:49 +08:00
parent 822aabaac6
commit 5ea67a5b6c
2 changed files with 67 additions and 0 deletions

21
map_test.go Normal file
View File

@ -0,0 +1,21 @@
// Package wrapper ...
//
// Description : wrapper ...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 2024-11-06 18:37
package wrapper
import (
"fmt"
"testing"
)
func TestMap_Exist(t *testing.T) {
testData := Map(map[string]any{
"name": "zhang",
})
fmt.Println(testData.Exist("name"))
fmt.Println(testData.Exist("age"))
}