Can you please tell me how I can write multidimensional map. For two dimensional map, I did the following:
map<string, int> Employees
Employees[“person1”] = 200;
I was trying to use something similar to following for 4d mapping.
map<string, string, string, int> Employees;
Employees[“person1”]["gender"][“age”] = 200;
Can you please tell me the correct way to do this?