concurrent_unordered_multimap Class
The concurrent_unordered_multimap class is an concurrency-safe container that controls a varying-length sequence of elements of type std::pair<const _Key_type, _Element_type>. The sequence is represented in a way that enables concurrency-safe append, element access, iterator access and iterator traversal operations.
template <
typename _Key_type,
typename _Element_type,
typename _Hasher = std::tr1::hash<_Key_type>,
typename _Key_equality = std::equal_to<_Key_type>,
typename _Allocator_type = std::allocator<std::pair<const _Key_type,
_Element_type> >
>
, typename _Key_equality = std::equal_to<_Key_type>, typename _Allocator_type = std::allocator<std::pair<const _Key_type, _Element_type> > > class concurrent_unordered_multimap : public details::_Concurrent_hash< details::_Concurrent_unordered_map_traits<_Key_type, _Element_type, details::_Hash_compare<_Key_type, _Hasher, _Key_equality>, _Allocator_type, true> >;
Parameters
_Key_type
The key type._Element_type
The mapped type._Hasher
The hash function object type. This argument is optional and the default value is std::tr1::hash<_Key_type**>**._Key_equality
The equality comparison function object type. This argument is optional and the default value is std::equal_to<_Key_type**>**._Allocator_type
The type that represents the stored allocator object that encapsulates details about the allocation and deallocation of memory for the concurrent vector. This argument is optional and the default value is std::allocator<std::pair<_Key_type, _Element_type**>>**.
Members
Public Typedefs
Name |
Description |
---|---|
allocator_type |
The type of an allocator for managing storage. |
const_iterator |
The type of a constant iterator for the controlled sequence. |
const_local_iterator |
The type of a constant bucket iterator for the controlled sequence. |
const_pointer |
The type of a constant pointer to an element. |
const_reference |
The type of a constant reference to an element. |
difference_type |
The type of a signed distance between two elements. |
hasher |
The type of the hash function. |
iterator |
The type of an iterator for the controlled sequence. |
key_equal |
The type of the comparison function. |
key_type |
The type of an ordering key. |
local_iterator |
The type of a bucket iterator for the controlled sequence. |
mapped_type |
The type of a mapped value associated with each key. |
pointer |
The type of a pointer to an element. |
reference |
The type of a reference to an element. |
size_type |
The type of an unsigned distance between two elements. |
value_type |
The type of an element. |
Public Constructors
Name |
Description |
---|---|
concurrent_unordered_multimap::concurrent_unordered_multimap Constructor |
Overloaded. Constructs a concurrent unordered multimap. |
Public Methods
Name |
Description |
---|---|
Returns the stored hash function object. |
|
Overloaded. Adds elements to the concurrent_unordered_multimap object. |
|
Returns the stored equality comparison function object. |
|
Swaps the contents of two concurrent_unordered_multimap objects. This method is not concurrency-safe. |
|
Overloaded. Removes elements from the concurrent_unordered_multimap at specified positions. This method is not concurrency-safe. |
Public Operators
Name |
Description |
---|---|
Overloaded. Assigns the contents of another concurrent_unordered_multimap object to this one. This method is not concurrency-safe. |
Remarks
For detailed information on the concurrent_unordered_multimap class, see Parallel Containers and Objects.
Inheritance Hierarchy
_Traits
_Concurrent_hash
concurrent_unordered_multimap
Requirements
Header: concurrent_unordered_map.h
Namespace: concurrency