Iterators#
The types concurrent_multimap::iterator
and concurrent_multimap::const_iterator
meet the requirements of ForwardIterator
from the [forward.iterators] ISO C++ standard section.
begin and cbegin#
iterator begin(); const_iterator begin() const; const_iterator cbegin() const;Returns: an iterator to the first element in the container.
end and cend#
iterator end(); const_iterator end() const; const_iterator cend() const;Returns: an iterator to the element that follows the last element in the container.