feat: 字符串 -> 基础数据类型转换, 使用泛型实现

This commit is contained in:
2025-10-13 11:40:08 +08:00
parent 460672bcd0
commit 20d2912274
7 changed files with 515 additions and 6 deletions

View File

@ -22,11 +22,11 @@ func TestMap_Exist(t *testing.T) {
func TestMap_IsNil(t *testing.T) {
var (
m Map
m1 *Map
m Map
//m1 *Map
)
fmt.Println(m.Set("a", 1))
fmt.Println(m.IsNil(), m1.IsNil())
//fmt.Println(m.IsNil(), m1.IsNil())
}
func TestMap_IsMasher(t *testing.T) {