Map
find(const T& key) [Map template]
Returns a Map::Iterator
or Map::ConstIterator
for an element with a key key
. The iterator has a value of end()
if the key is not found.
// PROTOTYPES
template<typename T>
Iterator find(const T& key);
template<typename T>
ConstIterator find(const T& key) const;