Hello,
If I have code like such:
map <string, map <string, int> > foo;
map <string, map <string, int> >::iterator bar;
How to access the value of the nested map? Normally I access a map's value like such:
bar->second;
To that end, I tried doing this on my nested map:
bar->second->second;
But this gave me complier errors. What is the correct syntax for this?