I'm just wondering if it is a good idea to make a data structure like
std::map< std::pair<int,int>,std::string >
Just wondering how the pairs would be ordered internally... :S
Thanks!
|
|
|
The pairs would be ordered using the pair
(C++03, 20.2.2/6) Note that it could get confusing using a pair as a map key, especially when working with map iterators ( As with all things, use with care, and if it's not straightforward and easy to understand, it's probably better to find a different way to do it. |
|||
|
|
|
If you're looking to have two indexes for your hash table then you should look at Boost::multiindex containers. As far as answering your question, why not if you can deal with the limitations others have pointed out. I'm always for any solution that is clear, easy to use, and suits the purposes of the problem at hand. |
|||
|
|
|
You can. In my opinion though you should do something more expressive than that, because
And then use |
|||||
|