What is the best way to search a std::Map for a specific key and value? Which basically means that I would like to find if exists a std::pair with key and value specified by me.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Something like this ?
|
||||
|
|
|
Since Don't make the mistake of using |
|||
|
|
|
std::map is a unique associative container, meaning that no two elements have the same key. Thus, it suffices searching for the specific key by std::map::find. |
|||
|
|
|
For finding items on some criteria on values I usually use predicate functors with the
|
|||||||
|