std::unordered_multimap< _Key, _Tp, _Hash, _Pred, _Alloc > Class Template Reference
[Unordered Associative Containers]
A standard container composed of equivalent keys (possibly containing multiple of each key value) that associates values of another type with the keys.
More...
Inherits std::__unordered_multimap< _Key, _Tp, _Hash, _Pred, _Alloc >.
List of all members.
Public Types
-
typedef _Base::allocator_type allocator_type
-
typedef _Base::hasher hasher
-
typedef _Base::key_equal key_equal
-
typedef _Base::size_type size_type
-
typedef _Base::value_type value_type
Public Member Functions
-
unordered_multimap (initializer_list< value_type > __l, size_type __n=10, const hasher &__hf=hasher(), const key_equal &__eql=key_equal(), const allocator_type &__a=allocator_type())
-
unordered_multimap (unordered_multimap &&__x)
-
template<typename _InputIterator > unordered_multimap (_InputIterator __f, _InputIterator __l, typename _Base::size_type __n=0, const hasher &__hf=hasher(), const key_equal &__eql=key_equal(), const allocator_type &__a=allocator_type())
-
unordered_multimap (size_type __n=10, const hasher &__hf=hasher(), const key_equal &__eql=key_equal(), const allocator_type &__a=allocator_type())
-
unordered_multimap & operator= (initializer_list< value_type > __l)
-
unordered_multimap & operator= (unordered_multimap &&__x)
Detailed Description
template<class _Key, class _Tp, class _Hash = hash<_Key>, class _Pred = std::equal_to<_Key>, class _Alloc = std::allocator<std::pair<const _Key, _Tp> >>
class std::unordered_multimap< _Key, _Tp, _Hash, _Pred, _Alloc >
A standard container composed of equivalent keys (possibly containing multiple of each key value) that associates values of another type with the keys.
Meets the requirements of a container, and unordered associative container
- Parameters:
-
| Key | Type of key objects. |
| Tp | Type of mapped objects. |
| Hash | Hashing function object type, defaults to hash<Value>. |
| Pred | Predicate function object type, defaults to equal_to<Value>. |
| Alloc | Allocator type, defaults to allocator<Key>. |
The resulting value type of the container is std::pair<const Key, Tp>.
Definition at line 266 of file unordered_map.h.
The documentation for this class was generated from the following file: