Parallel iteration#

Member types concurrent_unordered_map::range_type and concurrent_unordered_map::const_range_type meet the ContainerRange requirements.

These types differ only in that the bounds for a concurrent_unordered_map::const_range_type are of type concurrent_unordered_map::const_iterator, whereas the bounds for a concurrent_unordered_map::range_type are of type concurrent_unordered_map::iterator.

range member function#

range_type range();

const_range_type range() const;

Returns: a range object representing all elements in the container.