You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var data = map[string]map[string]string{}
data["a"] = map[string]string{}
data["b"] = make(map[string]string)
data["c"] = make(map[string]string)
data["a"]["w"] = "x"
data["b"]["w"] = "x"
data["c"]["w"] = "x"
How to do this kind of nested map using concurrent Map? Any Idea
The text was updated successfully, but these errors were encountered:
For example,
In regular map
How to do this kind of nested map using concurrent Map? Any Idea
The text was updated successfully, but these errors were encountered: