Notice that this function returns an iterator to only one of the elements with that value; To obtain the entire range of elements with a given value, you can use multimap::equal_range.
Parameters
- x
- Value to be searched for.
key_type is a member type defined in multimap containers as an alias of Key, which is the first template parameter and the type of the keys for the elements stored in the container.
Return value
An iterator to the element, if the specified key value is found, or multimap::end if the specified key is not found in the container.Both iterator and const_iterator are member types. In the multimap class template, these are bidirectional iterators.
Dereferencing this iterator accesses the element's value, which is of type pair<const Key,T>.
Example
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
|
Output:
elements in mymm: y => 20 z => 40 |
Complexity
Logarithmic in size.See also
| multimap::equal_range | Get range of equal elements (public member function) |
| multimap::count | Count elements with a specific key (public member function) |
| multimap::lower_bound | Return iterator to lower bound (public member function) |
| multimap::upper_bound | Return iterator to upper bound (public member function) |
