// Setmaps:=NewMaps()maps.Set("key1","123123")// Existmaps.Exist("key1")// Getmaps.Get("key")// Deletemaps.Delete("key1","key2")// GetMapsKeys return a []stringmaps.Keys()// GetMapsValues return a []interfacemaps.Values()// GetMapsOriginMap get this maps origin data return a map[string]interfacemaps.OriginMap()// SortKey sort this maps by keysmaps.SortKey()// other example ./maps_test.go