I have a map where I\'d like to perform a call on every data type object member function. I yet know how to do this on any sequence but, is it possible to do it on an associativ
How about a plain C++? (example fixed according to the note by @Noah Roberts)
for(std::map::iterator itr = Map.begin(), itr_end = Map.end(); itr != itr_end; ++itr) { itr->second.Method(); }