How would you make an iterator as a key of hash_map?
How would you define it under gcc, Microsoft c++?
E.g.
vector<string>::iterator i;
hash_map<vector<string>::iterator, int> h;
or
list<string>::iterator i;
hash_map<list<string>::iterator, int> h;
THis gives an error as iterators are not predefined as string and other types are...
Blockquote