Quick Links:

bal | bbl | bdl | bsl

Classes | Typedefs | Functions | Variables | Friends

Component bslstl_unorderedmultimap
[Package bslstl]

Provide an STL-compliant unordered_multimap container. More...

Classes

class  bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >

Typedefs

typedef KEY bsl::unordered_multimap::key_type
typedef VALUE bsl::unordered_multimap::mapped_type
typedef bsl::pair< const KEY,
VALUE > 
bsl::unordered_multimap::value_type
typedef HASH bsl::unordered_multimap::hasher
typedef EQUAL bsl::unordered_multimap::key_equal
typedef ALLOCATOR bsl::unordered_multimap::allocator_type
typedef value_type & bsl::unordered_multimap::reference
typedef const value_type & bsl::unordered_multimap::const_reference
typedef AllocatorTraits::size_type bsl::unordered_multimap::size_type
typedef
AllocatorTraits::difference_type 
bsl::unordered_multimap::difference_type
typedef AllocatorTraits::pointer bsl::unordered_multimap::pointer
typedef
AllocatorTraits::const_pointer 
bsl::unordered_multimap::const_pointer
typedef
::BloombergLP::bslstl::HashTableIterator
< value_type, difference_type > 
bsl::unordered_multimap::iterator
typedef
::BloombergLP::bslstl::HashTableIterator
< const value_type,
difference_type > 
bsl::unordered_multimap::const_iterator
typedef
::BloombergLP::bslstl::HashTableBucketIterator
< value_type, difference_type > 
bsl::unordered_multimap::local_iterator
typedef
::BloombergLP::bslstl::HashTableBucketIterator
< const value_type,
difference_type > 
bsl::unordered_multimap::const_local_iterator

Functions

 bsl::unordered_multimap::unordered_multimap ()
 bsl::unordered_multimap::unordered_multimap (size_type initialNumBuckets, const HASH &hashFunction=HASH(), const EQUAL &keyEqual=EQUAL(), const ALLOCATOR &basicAllocator=ALLOCATOR())
 bsl::unordered_multimap::unordered_multimap (size_type initialNumBuckets, const HASH &hashFunction, const ALLOCATOR &basicAllocator)
 bsl::unordered_multimap::unordered_multimap (size_type initialNumBuckets, const ALLOCATOR &basicAllocator)
 bsl::unordered_multimap::unordered_multimap (const ALLOCATOR &basicAllocator)
 bsl::unordered_multimap::unordered_multimap (const unordered_multimap &original)
 bsl::unordered_multimap::unordered_multimap (BloombergLP::bslmf::MovableRef< unordered_multimap > original)
 bsl::unordered_multimap::unordered_multimap (const unordered_multimap &original, const typename type_identity< ALLOCATOR >::type &basicAllocator)
 bsl::unordered_multimap::unordered_multimap (BloombergLP::bslmf::MovableRef< unordered_multimap > original, const typename type_identity< ALLOCATOR >::type &basicAllocator)
template<class INPUT_ITERATOR >
 bsl::unordered_multimap::unordered_multimap (INPUT_ITERATOR first, INPUT_ITERATOR last, size_type initialNumBuckets=0, const HASH &hashFunction=HASH(), const EQUAL &keyEqual=EQUAL(), const ALLOCATOR &basicAllocator=ALLOCATOR())
template<class INPUT_ITERATOR >
 bsl::unordered_multimap::unordered_multimap (INPUT_ITERATOR first, INPUT_ITERATOR last, size_type initialNumBuckets, const HASH &hashFunction, const ALLOCATOR &basicAllocator)
template<class INPUT_ITERATOR >
 bsl::unordered_multimap::unordered_multimap (INPUT_ITERATOR first, INPUT_ITERATOR last, size_type initialNumBuckets, const ALLOCATOR &basicAllocator)
template<class INPUT_ITERATOR >
 bsl::unordered_multimap::unordered_multimap (INPUT_ITERATOR first, INPUT_ITERATOR last, const ALLOCATOR &basicAllocator)
 bsl::unordered_multimap::unordered_multimap (std::initializer_list< value_type > values, size_type initialNumBuckets=0, const HASH &hashFunction=HASH(), const EQUAL &keyEqual=EQUAL(), const ALLOCATOR &basicAllocator=ALLOCATOR())
 bsl::unordered_multimap::unordered_multimap (std::initializer_list< value_type > values, size_type initialNumBuckets, const HASH &hashFunction, const ALLOCATOR &basicAllocator)
 bsl::unordered_multimap::unordered_multimap (std::initializer_list< value_type > values, size_type initialNumBuckets, const ALLOCATOR &basicAllocator)
 bsl::unordered_multimap::unordered_multimap (std::initializer_list< value_type > values, const ALLOCATOR &basicAllocator)
 bsl::unordered_multimap::~unordered_multimap ()
unordered_multimap & bsl::unordered_multimap::operator= (const unordered_multimap &rhs)
unordered_multimap &operator=(BloombergLP::bslmf::MovableRef
< unordered_multimap > rhs)
BSLS_KEYWORD_NOEXCEPT_SPECIFICATION(AllocatorTraits
unordered_multimap & 
bsl::unordered_multimap::operator= (std::initializer_list< value_type > values)
iterator bsl::unordered_multimap::begin () BSLS_KEYWORD_NOEXCEPT
iterator bsl::unordered_multimap::end () BSLS_KEYWORD_NOEXCEPT
local_iterator bsl::unordered_multimap::begin (size_type index)
local_iterator bsl::unordered_multimap::end (size_type index)
void bsl::unordered_multimap::clear () BSLS_KEYWORD_NOEXCEPT
template<class LOOKUP_KEY >
enable_if
< BloombergLP::bslmf::IsTransparentPredicate
< HASH, LOOKUP_KEY >::value
&&BloombergLP::bslmf::IsTransparentPredicate
< EQUAL, LOOKUP_KEY >::value,
pair< iterator, iterator >
>::type 
bsl::unordered_multimap::equal_range (const LOOKUP_KEY &key)
pair< iterator, iterator > bsl::unordered_multimap::equal_range (const key_type &key)
size_type bsl::unordered_multimap::erase (const key_type &key)
iterator bsl::unordered_multimap::erase (const_iterator position)
iterator bsl::unordered_multimap::erase (iterator position)
iterator bsl::unordered_multimap::erase (const_iterator first, const_iterator last)
template<class LOOKUP_KEY >
enable_if
< BloombergLP::bslmf::IsTransparentPredicate
< HASH, LOOKUP_KEY >::value
&&BloombergLP::bslmf::IsTransparentPredicate
< EQUAL, LOOKUP_KEY >::value,
iterator >::type 
bsl::unordered_multimap::find (const LOOKUP_KEY &key)
iterator bsl::unordered_multimap::find (const key_type &key)
iterator bsl::unordered_multimap::insert (const value_type &value)
template<class ALT_VALUE_TYPE >
enable_if< is_convertible
< ALT_VALUE_TYPE, value_type >
::value, iterator >::type 
bsl::unordered_multimap::insert (BSLS_COMPILERFEATURES_FORWARD_REF(ALT_VALUE_TYPE) value)
iterator bsl::unordered_multimap::insert (const_iterator hint, const value_type &value)
template<class ALT_VALUE_TYPE >
enable_if< is_convertible
< ALT_VALUE_TYPE, value_type >
::value, iterator >::type 
bsl::unordered_multimap::insert (const_iterator hint, BSLS_COMPILERFEATURES_FORWARD_REF(ALT_VALUE_TYPE) value)
template<class INPUT_ITERATOR >
void bsl::unordered_multimap::insert (INPUT_ITERATOR first, INPUT_ITERATOR last)
void bsl::unordered_multimap::insert (std::initializer_list< value_type > values)
template<class... Args>
iterator bsl::unordered_multimap::emplace (Args &&...args)
template<class... Args>
iterator bsl::unordered_multimap::emplace_hint (const_iterator hint, Args &&...args)
void bsl::unordered_multimap::max_load_factor (float newLoadFactor)
void bsl::unordered_multimap::rehash (size_type numBuckets)
void bsl::unordered_multimap::reserve (size_type numElements)
const_iterator bsl::unordered_multimap::begin () const BSLS_KEYWORD_NOEXCEPT
const_iterator bsl::unordered_multimap::cbegin () const BSLS_KEYWORD_NOEXCEPT
const_iterator bsl::unordered_multimap::end () const BSLS_KEYWORD_NOEXCEPT
const_iterator bsl::unordered_multimap::cend () const BSLS_KEYWORD_NOEXCEPT
bool bsl::unordered_multimap::empty () const BSLS_KEYWORD_NOEXCEPT
size_type bsl::unordered_multimap::size () const BSLS_KEYWORD_NOEXCEPT
size_type bsl::unordered_multimap::max_size () const BSLS_KEYWORD_NOEXCEPT
EQUAL bsl::unordered_multimap::key_eq () const
HASH bsl::unordered_multimap::hash_function () const
template<class LOOKUP_KEY >
enable_if
< BloombergLP::bslmf::IsTransparentPredicate
< HASH, LOOKUP_KEY >::value
&&BloombergLP::bslmf::IsTransparentPredicate
< EQUAL, LOOKUP_KEY >::value,
const_iterator >::type 
bsl::unordered_multimap::find (const LOOKUP_KEY &key) const
const_iterator bsl::unordered_multimap::find (const key_type &key) const
template<class LOOKUP_KEY >
enable_if
< BloombergLP::bslmf::IsTransparentPredicate
< HASH, LOOKUP_KEY >::value
&&BloombergLP::bslmf::IsTransparentPredicate
< EQUAL, LOOKUP_KEY >::value,
size_type >::type 
bsl::unordered_multimap::count (const LOOKUP_KEY &key) const
size_type bsl::unordered_multimap::count (const key_type &key) const
template<class LOOKUP_KEY >
enable_if
< BloombergLP::bslmf::IsTransparentPredicate
< HASH, LOOKUP_KEY >::value
&&BloombergLP::bslmf::IsTransparentPredicate
< EQUAL, LOOKUP_KEY >::value,
pair< const_iterator,
const_iterator > >::type 
bsl::unordered_multimap::equal_range (const LOOKUP_KEY &key) const
pair< const_iterator,
const_iterator > 
bsl::unordered_multimap::equal_range (const key_type &key) const
const_local_iterator bsl::unordered_multimap::begin (size_type index) const
const_local_iterator bsl::unordered_multimap::cbegin (size_type index) const
const_local_iterator bsl::unordered_multimap::end (size_type index) const
const_local_iterator bsl::unordered_multimap::cend (size_type index) const
size_type bsl::unordered_multimap::bucket (const key_type &key) const
size_type bsl::unordered_multimap::bucket_count () const BSLS_KEYWORD_NOEXCEPT
size_type bsl::unordered_multimap::max_bucket_count () const BSLS_KEYWORD_NOEXCEPT
size_type bsl::unordered_multimap::bucket_size (size_type index) const
float bsl::unordered_multimap::load_factor () const BSLS_KEYWORD_NOEXCEPT
float bsl::unordered_multimap::max_load_factor () const BSLS_KEYWORD_NOEXCEPT
template<class KEY , class VALUE , class HASH , class EQUAL , class ALLOCATOR >
bool bsl::operator== (const unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR > &lhs, const unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR > &rhs)
template<class KEY , class VALUE , class HASH , class EQUAL , class ALLOCATOR >
bool bsl::operator!= (const unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR > &lhs, const unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR > &rhs)
template<class KEY , class VALUE , class HASH , class EQUAL , class ALLOCATOR >
void bsl::swap (unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR > &a, unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR > &b) BSLS_KEYWORD_NOEXCEPT_SPECIFICATION(false)

Variables

void swap(unordered_multimap
&other)
BSLS_KEYWORD_NOEXCEPT_SPECIFICATION(AllocatorTraits
allocator_type 
bsl::unordered_multimap::get_allocator () const BSLS_KEYWORD_NOEXCEPT

Friends

template<class KEY2 , class VALUE2 , class HASH2 , class EQUAL2 , class ALLOCATOR2 >
bool bsl::unordered_multimap::operator== (const unordered_multimap< KEY2, VALUE2, HASH2, EQUAL2, ALLOCATOR2 > &, const unordered_multimap< KEY2, VALUE2, HASH2, EQUAL2, ALLOCATOR2 > &)

Detailed Description

Outline
Purpose:
Provide an STL-compliant unordered_multimap container.
Classes:
bsl::unordered_multimap hashed-map container
Canonical Header:
bsl_unordered_map.h
See also:
package bos+stdhdrs in the bos package group
Description:
This component defines a single class template, bsl::unordered_multimap, implementing the standard container holding a collection of (possibly equivalent) keys, each mapped to an associated value (with minimal guarantees on ordering).
An instantiation of unordered_multimap is an allocator-aware, value-semantic type whose salient attributes are its size (number of keys) and the set of key-value pairs the unordered_multimap contains, without regard to their order. If unordered_multimap is instantiated with a key type or mapped-value type that is not itself value-semantic, then it will not retain all of its value-semantic qualities. In particular, if ether the key or value type cannot be tested for equality, then an unordered_multimap containing that type cannot be tested for equality. It is even possible to instantiate unordered_multimap with a key or value type that does not have an accessible copy-constructor, in which case the unordered_multimap will not be copyable. Note that the equality operator for each key-value pair is used to determine when two unordered_multimap objects have the same value, and not the object of EQUAL type supplied at construction.
An unordered_multimap meets the requirements of an unordered associative container with forward iterators in the C++11 standard [23.2.5]. The unordered_multimap implemented here adheres to the C++11 standard when compiled with a C++11 compiler, and makes the best approximation when compiled with a C++03 compiler. In particular, for C++03 we emulate move semantics, but limit forwarding (in emplace) to const lvalues, and make no effort to emulate noexcept or initializer-lists.
Requirements on KEY and VALUE:
An unordered_multimap is a fully Value-Semantic Type (see bsldoc_glossary) only if the supplied KEY and VALUE template parameters are themselves fully value-semantic. It is possible to instantiate an unordered_multimap with KEY and VALUE parameter arguments that do not provide a full set of value-semantic operations, but then some methods of the container may not be instantiable. The following terminology, adopted from the C++11 standard, is used in the function documentation of unordered_multimap to describe a function's requirements for the KEY and VALUE template parameters. These terms are also defined in section [17.6.3.1] of the C++11 standard. Note that, in the context of an unordered_multimap instantiation, the requirements apply specifically to the unordered multimap's element type, value_type, which is an alias for pair<const KEY, VALUE>.
Legend ------ X - denotes an allocator-aware container type (unordered_multimap) T - value_type associated with X A - type of the allocator used by X m - lvalue of type A (allocator) p, - address (T *) of uninitialized storage for a T within an X rv - rvalue of type (non-'const') T v - rvalue or lvalue of type (possibly const) T args - 0 or more arguments
The following terms are used to more precisely specify the requirements on template parameter types in function-level documentation.
default-insertable: T has a default constructor. More precisely, T is default-insertable into X means that the following expression is well-formed:
Requirements on HASH and EQUAL:
The (template parameter) types HASH and EQUAL must be copy-constructible function-objects. Note that this requirement is somewhat stronger than the requirement currently in the standard; see the discussion for Issue 2215 (http://cplusplus.github.com/LWG/lwg-active.html#2215);
HASH shall support a function call operator compatible with the following statements:
  HASH        hash;
  KEY         key;
  std::size_t result = hash(key);
where the definition of the called function meets the requirements of a hash function, as specified in bslstl_hash|Standard Hash Function.
EQUAL shall support a function call operator compatible with the following statements:
  EQUAL equal;
  KEY   key1, key2;
  bool  result = equal(key1, key2);
where the definition of the called function defines an equivalence relationship on keys that is both reflexive and transitive.
HASH and EQUAL function-objects are further constrained such that any two objects whose keys compare equivalent by the comparator shall also produce the same value from the hasher.
Memory Allocation:
The type supplied as an unordered multimap's ALLOCATOR template parameter determines how that unordered multimap will allocate memory. The unordered_multimap template supports allocators meeting the requirements of the C++11 standard [17.6.3.5]. In addition, it supports scoped-allocators derived from the bslma::Allocator memory allocation protocol. Clients intending to use bslma-style allocators should use the template's default ALLOCATOR type. The default type for the ALLOCATOR template parameter, bsl::allocator, provides a C++11 standard-compatible adapter for a bslma::Allocator object.
bslma-Style Allocators:
If the (template parameter) type ALLOCATOR of an unordered_multimap instantiation is bsl::allocator, then objects of that unordered multimap type will conform to the standard behavior of a bslma-allocator-enabled type. Such an unordered multimap accepts an optional bslma::Allocator argument at construction. If the address of a bslma::Allocator object is explicitly supplied at construction, it is used to supply memory for the unordered multimap throughout its lifetime; otherwise, the unordered multimap will use the default allocator installed at the time of the unordered multimap's construction (see bslma_default). In addition to directly allocating memory from the indicated bslma::Allocator, an unordered multimap supplies that allocator's address to the constructors of contained objects of the (template parameter) types KEY and VALUE, if respectively, the types define the bslma::UsesBslmaAllocator trait.
Operations:
This section describes the run-time complexity of operations on instances of unordered_multimap:
  Legend
  ------
  'K'             - (template parameter) type 'KEY' of 'unordered_multimap'
  'V'             - (template parameter) type 'VALUE' of 'unordered_multimap'
  'a', 'b'        - two distinct objects of type 'unordered_multimap<K, V>'
  'rv'            - modifiable rvalue of type 'unordered_multimap<K, V>'
  'n', 'm'        - number of elements in 'a' and 'b', respectively
  'w'             - number of buckets of 'a'
  'value_type'    - 'pair<const K, V>'
  'hf'            - hash function for objects of type 'K'
  'eq'            - equivalence comparator for objects of type 'K'
  'al'            - STL-style memory allocator
  'k'             - an object of type 'K'
  'v'             - object of type 'V'
  'vt'            - object of type 'value_type'
  'rvt'           - modifiable rvalue of type 'value_type'
  'idx'           - bucket index
  'li'            - object of type 'initializer_list<value_type>'
  'i1', 'i2'      - two iterators defining a sequence of 'value_type' objects
  'p1', 'p2'      - two iterators belonging to 'a'
  distance(i1,i2) - the number of elements in the range '[i1 .. i2)'
  distance(p1,p2) - the number of elements in the range '[p1 .. p2)'
  'z'             - floating point value representing a load factor

  +----------------------------------------------------+--------------------+
  | Operation                                          | Complexity         |
  +====================================================+====================+
  | unordered_multimap<K, V> a;    (dflt construction) | O[1]               |
  | unordered_multimap<K, V> a(al);                    |                    |
  +----------------------------------------------------+--------------------+
  | unordered_multimap<K, V> a(rv);(move construction) | O[1] if 'a' and    |
  | unordered_multimap<K, V> a(rv, al);                | 'rv' use the same  |
  |                                                    | allocator,         |
  |                                                    | O[n] otherwise     |
  +----------------------------------------------------+--------------------+
  | unordered_multimap<K, V> a(b); (copy construction) | Average: O[n]      |
  | unordered_multimap<K, V> a(b, al);                 | Worst:   O[n^2]    |
  +----------------------------------------------------+--------------------+
  | unordered_multimap<K, V> a(w);                     | O[n]               |
  | unordered_multimap<K, V> a(w, al);                 |                    |
  | unordered_multimap<K, V> a(w, hf);                 |                    |
  | unordered_multimap<K, V> a(w, hf, al);             |                    |
  | unordered_multimap<K, V> a(w, hf, eq);             |                    |
  | unordered_multimap<K, V> a(w, hf, eq, al);         |                    |
  +----------------------------------------------------+--------------------+
  | unordered_multimap<K, V> a(i1, i2);                | Average: O[N]      |
  | unordered_multimap<K, V> a(i1, i2, al);            | Worst:   O[N^2]    |
  | unordered_multimap<K, V> a(i1, i2, w);             | where N =          |
  | unordered_multimap<K, V> a(i1, i2, w, al);         |  distance(i1, i2)] |
  | unordered_multimap<K, V> a(i1, i2, w, hf);         |                    |
  | unordered_multimap<K, V> a(i1, i2, w, hf, al);     |                    |
  | unordered_multimap<K, V> a(i1, i2, w, hf, eq);     |                    |
  | unordered_multimap<K, V> a(i1, i2, w, hf, eq, al); |                    |
  +----------------------------------------------------+--------------------+
  | unordered_multimap<K, V> a(li);                    | Average: O[N]      |
  | unordered_multimap<K, V> a(li, al);                | Worst:   O[N^2]    |
  | unordered_multimap<K, V> a(li, w);                 | where N =          |
  | unordered_multimap<K, V> a(li, w, al);             |         'li.size()'|
  | unordered_multimap<K, V> a(li, w, hf);             |                    |
  | unordered_multimap<K, V> a(li, w, hf, al);         |                    |
  | unordered_multimap<K, V> a(li, w, hf, eq);         |                    |
  | unordered_multimap<K, V> a(li, w, hf, eq, al);     |                    |
  +----------------------------------------------------+--------------------+
  | a.~unordered_multimap<K, V>(); (destruction)       | O[n]               |
  +----------------------------------------------------+--------------------+
  | a = rv;                          (move assignment) | O[1] if 'a' and    |
  |                                                    | 'rv' use the same  |
  |                                                    | allocator,         |
  |                                                    | O[n] otherwise     |
  +----------------------------------------------------+--------------------+
  | a = b;                           (copy assignment) | Average: O[n]      |
  |                                                    | Worst:   O[n^2]    |
  +----------------------------------------------------+--------------------+
  | a = li;                                            | Average: O[N]      |
  |                                                    | Worst:   O[N^2]    |
  |                                                    | where N =          |
  |                                                    |         'li.size()'|
  +----------------------------------------------------+--------------------+
  | a.begin(), a.end(), a.cbegin(), a.cend()           | O[1]               |
  +----------------------------------------------------+--------------------+
  | a.begin(idx), a.end(idx), a.cbegin(idx),           | O[1]               |
  | a.cend(idx)                                        |                    |
  +----------------------------------------------------+--------------------+
  | a == b, a != b                                     | Best:  O[n]        |
  |                                                    | Worst: O[n^2]      |
  +----------------------------------------------------+--------------------+
  | a.swap(b), swap(a, b)                              | O[1]               |
  +----------------------------------------------------+--------------------+
  | a.key_eq()                                         | O[1]               |
  +----------------------------------------------------+--------------------+
  | a.hash_function()                                  | O[1]               |
  +----------------------------------------------------+--------------------+
  | a.size()                                           | O[1]               |
  +----------------------------------------------------+--------------------+
  | a.max_size()                                       | O[1]               |
  +----------------------------------------------------+--------------------+
  | a.empty()                                          | O[1]               |
  +----------------------------------------------------+--------------------+
  | a.allocator()                                      | O[1]               |
  +----------------------------------------------------+--------------------+
  | a.insert(vt)                                       | Average: O[1]      |
  | a.insert(rvt)                                      | Worst:   O[n]      |
  | a.emplace(Args&&...)                               |                    |
  +----------------------------------------------------+--------------------+
  | a.insert(p1, vt)                                   | Average: O[1]      |
  | a.insert(p1, rvt)                                  | Worst:   O[n]      |
  | a.emplace(p1, Args&&...)                           |                    |
  +----------------------------------------------------+--------------------+
  | a.insert(i1, i2)                                   | Average: O[        |
  |                                                    |   distance(i1, i2)]|
  |                                                    | Worst:   O[n *     |
  |                                                    |   distance(i1, i2)]|
  +----------------------------------------------------+--------------------+
  | a.insert(li);                                      | Average: O[N]      |
  |                                                    | Worst:   O[n * N]  |
  |                                                    | where N =          |
  |                                                    |         'li.size()'|
  +----------------------------------------------------+--------------------+
  | a.erase(p1)                                        | Average: O[1]      |
  |                                                    | Worst:   O[n]      |
  +----------------------------------------------------+--------------------+
  | a.erase(k)                                         | Average:           |
  |                                                    |       O[a.count(k)]|
  |                                                    | Worst:             |
  |                                                    |       O[n]         |
  +----------------------------------------------------+--------------------+
  | a.erase(p1, p2)                                    | Average: O[        |
  |                                                    |   distance(p1, p2)]|
  |                                                    | Worst:   O[n]      |
  +----------------------------------------------------+--------------------+
  | a.clear()                                          | O[n]               |
  +----------------------------------------------------+--------------------+
  | a.find(k)                                          | Average: O[1]      |
  |                                                    | Worst:   O[n]      |
  +----------------------------------------------------+--------------------+
  | a.count(k)                                         | Average: O[1]      |
  |                                                    | Worst:   O[n]      |
  +----------------------------------------------------+--------------------+
  | a.equal_range(k)                                   | Average: O[        |
  |                                                    |         a.count(k)]|
  |                                                    | Worst:   O[n]      |
  +----------------------------------------------------+--------------------+
  | a.bucket_count()                                   | O[1]               |
  +----------------------------------------------------+--------------------+
  | a.max_bucket_count()                               | O[1]               |
  +----------------------------------------------------+--------------------+
  | a.bucket(k)                                        | O[1]               |
  +----------------------------------------------------+--------------------+
  | a.bucket_size(idx)                                 | O[1]               |
  +----------------------------------------------------+--------------------+
  | a.load_factor()                                    | O[1]               |
  +----------------------------------------------------+--------------------+
  | a.max_load_factor()                                | O[1]               |
  | a.max_load_factor(z)                               | Average: O[1]      |
  +----------------------------------------------------+--------------------+
  | a.rehash(w)                                        | Average: O[n]      |
  |                                                    | Worst:   O[n^2]    |
  +----------------------------------------------------+--------------------+
  | a.reserve(w)                                       | Average: O[n]      |
  |                                                    | Worst:   O[n^2]    |
  +----------------------------------------------------+--------------------+
Iterator, Pointer, and Reference Invalidation:
No method of unordered_multimap invalidates a pointer or reference to an element in the unordered multimap unless it erases that element, such as any erase overload, clear, or the destructor (which erases all elements). Pointers and references are stable through a rehash.
Iterators to elements in the container are invalidated by any rehash, so iterators may be invalidated by an insert or emplace call if it triggers a rehash (but not otherwise). Iterators to specific elements are also invalidated when those elements are erased. Note that although the end iterator does not refer to any element in the container, it may be invalidated by any non-'const' method.
Unordered Multimap Configuration:
The unordered multimap has interfaces that can provide insight into, and control of, its inner workings. The syntax and semantics of these interfaces for bsl::unordered_multimap are identical to those of bsl::unordered_map. See the discussion in bslstl_unorderedmap|Unordered Map Configuration and the illustrative material in bslstl_unorderedmap|Example 2.
Practical Requirements on HASH:
An important factor in the performance of an unordered multimap (and any of the other unordered containers) is the choice of a hash function. Please see the discussion in bslstl_unorderedmap|Practical Requirements on HASH.
Usage:
In this section we show intended use of this component.
Example 1: Creating a Concordance:
Unordered multimaps are useful in situations when there is no meaningful way to compare key values, when the order of the keys is irrelevant to the problem domain, or (even if there is a meaningful ordering) the benefit of ordering the results is outweighed by the higher performance provided by unordered multimaps (compared to ordered multimaps).
One uses a multimap (ordered or unordered) when there may be more than one mapped value associated with a key value. In this example we will use bslstl_unorderedmultimap to create a concordance (an index of where each unique word appears in the set of documents).
Our source of documents is a set of statically initialized arrays:
  static char document0[] =
  " IN CONGRESS, July 4, 1776.\n"
  "\n"
  " The unanimous Declaration of the thirteen united States of America,\n"
  "\n"
  " When in the Course of human events, it becomes necessary for one\n"
  " people to dissolve the political bands which have connected them with\n"
  " another, and to assume among the powers of the earth, the separate\n"
  " and equal station to which the Laws of Nature and of Nature's God\n"
  " entitle them, a decent respect to the opinions of mankind requires\n"
  " that they should declare the causes which impel them to the\n"
  " separation.  We hold these truths to be self-evident, that all men\n"
  " are created equal, that they are endowed by their Creator with\n"
  " certain unalienable Rights, that among these are Life, Liberty and\n"
  " the pursuit of Happiness.--That to secure these rights, Governments\n"
  " are instituted among Men, deriving their just powers from the consent\n"
  " of the governed, --That whenever any Form of Government becomes\n"
  ...
  " States may of right do.  And for the support of this Declaration,\n"
  " with a firm reliance on the protection of divine Providence, we\n"
  " mutually pledge to each other our Lives, our Fortunes and our sacred\n"
  " Honor.\n";

  static char document1[] =
  "/The Universal Declaration of Human Rights\n"
  "/-----------------------------------------\n"
  "/Preamble\n"
  "/ - - - -\n"
  " Whereas recognition of the inherent dignity and of the equal and\n"
  " inalienable rights of all members of the human family is the\n"
  " foundation of freedom, justice and peace in the world,\n"
  ...
  "/Article 30\n"
  "/ - - - - -\n"
  " Nothing in this Declaration may be interpreted as implying for any\n"
  " State, group or person any right to engage in any activity or to\n"
  " perform any act aimed at the destruction of any of the rights and\n"
  " freedoms set forth herein.\n";

  static char document2[] =
  "/CHARTER OF FUNDAMENTAL RIGHTS OF THE EUROPEAN UNION\n"
  "/---------------------------------------------------\n"
  " PREAMBLE\n"
  "\n"
  " The peoples of Europe, in creating an ever closer union among them,\n"
  " are resolved to share a peaceful future based on common values.\n"
  ...
  "/Article 54\n"
  "/-  -  -  -\n"
  " Prohibition of abuse of rights\n"
  "\n"
  " Nothing in this Charter shall be interpreted as implying any right to\n"
  " engage in any activity or to perform any act aimed at the destruction\n"
  " of any of the rights and freedoms recognized in this Charter or at\n"
  " their limitation to a greater extent than is provided for herein.\n";

  static char * const documents[]  = { document0,
                                       document1,
                                       document2
                                     };
  const int           numDocuments = sizeof documents / sizeof *documents;
First, we define several aliases to make our code more comprehensible:
  typedef bsl::pair<int, int>                  WordLocation;
      // Document code number ('first') and word offset ('second') in that
      // document specify a word location.  The first word in the document
      // is at word offset 0.

  typedef bsl::unordered_multimap<bsl::string, WordLocation>
                                               Concordance;
  typedef Concordance::const_iterator          ConcordanceConstItr;
Next, we create an (empty) unordered multimap to hold our word tallies:
  Concordance concordance;
Then, we define the set of characters that define word boundaries:
  const char *delimiters = " \n\t,:;.()[]?!/";
Next, we extract the words from our documents. Note that strtok modifies the document arrays (which were not made const).
As each word is located, we create a map value -- a pair of the word converted to a bsl::string and a WordLocation object (itself a pair of document code and (word) offset of that word in the document) -- and insert the map value into the unordered multimap. Note that (unlike maps and unordered maps) there is no status to check; the insertion succeeds even if the key is already present in the unordered multimap.
  for (int idx = 0; idx < numDocuments; ++idx) {
      int wordOffset = 0;
      for (char *cur = strtok(documents[idx], delimiters);
                 cur;
                 cur = strtok(NULL,           delimiters)) {
          WordLocation            location(idx, wordOffset++);
          Concordance::value_type value(bsl::string(cur), location);
          concordance.insert(value);
      }
  }
Then, we can print a complete concordance by iterating through the unordered multimap:
  for (ConcordanceConstItr itr  = concordance.begin(),
                           end  = concordance.end();
                           end != itr; ++itr) {
      printf("\"%s\", %2d, %4d\n",
             itr->first.c_str(),
             itr->second.first,
             itr->second.second);
  }
Standard output shows:
  "extent",  2, 3837
  "greater",  2, 3836
  "abuse",  2, 3791
  "constitutions",  2, 3782
  "affecting",  2, 3727
  ...
  "he",  1, 1746
  "he",  1,  714
  "he",  0,  401
  "include",  2,  847
Next, if there are some particular words of interest, we seek them out using the equal_range method of the concordance object:
  const bsl::string wordsOfInterest[] = { "human",
                                          "rights",
                                          "unalienable",
                                          "inalienable"
                                        };
  const size_t numWordsOfInterest = sizeof  wordsOfInterest
                                    / sizeof *wordsOfInterest;

  for (size_t idx = 0; idx < numWordsOfInterest; ++idx) {
     bsl::pair<ConcordanceConstItr,
               ConcordanceConstItr> found = concordance.equal_range(
                                                       wordsOfInterest[idx]);
     for (ConcordanceConstItr itr  = found.first,
                              end  = found.second;
                              end != itr; ++itr) {
         printf("\"%s\", %2d, %4d\n",
                itr->first.c_str(),
                itr->second.first,
                itr->second.second);
     }
     printf("\n");
  }
Finally, we see on standard output:
  "human",  2, 3492
  "human",  2, 2192
  "human",  2,  534
  ...
  "human",  1,   65
  "human",  1,   43
  "human",  1,   25
  "human",  0,   20

  "rights",  2, 3583
  "rights",  2, 3553
  "rights",  2, 3493
  ...
  "rights",  1,   44
  "rights",  1,   19
  "rights",  0,  496
  "rights",  0,  126

  "unalienable",  0,  109

  "inalienable",  1,   18
bslstl_unorderedmap|Example 3 shows how to use the concordance to create an inverse concordance, and how to use the inverse concordance to find the context (surrounding words) of a word of interest.

Typedef Documentation

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
typedef KEY bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::key_type [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
typedef VALUE bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::mapped_type [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
typedef bsl::pair<const KEY, VALUE> bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::value_type [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
typedef HASH bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::hasher [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
typedef EQUAL bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::key_equal [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
typedef ALLOCATOR bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::allocator_type [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
typedef value_type& bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::reference [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
typedef const value_type& bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::const_reference [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
typedef AllocatorTraits::size_type bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::size_type [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
typedef AllocatorTraits::difference_type bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::difference_type [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
typedef AllocatorTraits::pointer bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::pointer [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
typedef AllocatorTraits::const_pointer bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::const_pointer [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
typedef ::BloombergLP::bslstl::HashTableIterator< value_type, difference_type> bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::iterator [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
typedef ::BloombergLP::bslstl::HashTableIterator< const value_type, difference_type> bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::const_iterator [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
typedef ::BloombergLP::bslstl::HashTableBucketIterator< value_type, difference_type> bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::local_iterator [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
typedef ::BloombergLP::bslstl::HashTableBucketIterator< const value_type, difference_type> bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::const_local_iterator [inherited]

Function Documentation

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::unordered_multimap (  )  [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::unordered_multimap ( size_type  initialNumBuckets,
const HASH &  hashFunction = HASH(),
const EQUAL &  keyEqual = EQUAL(),
const ALLOCATOR &  basicAllocator = ALLOCATOR() 
) [explicit, inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::unordered_multimap ( size_type  initialNumBuckets,
const HASH &  hashFunction,
const ALLOCATOR &  basicAllocator 
) [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::unordered_multimap ( size_type  initialNumBuckets,
const ALLOCATOR &  basicAllocator 
) [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::unordered_multimap ( const ALLOCATOR &  basicAllocator  )  [explicit, inherited]

Create an empty unordered multimap. Optionally specify an initialNumBuckets indicating the minimum initial size of the array of buckets of this container. If initialNumBuckets is not supplied, a single empty bucket is used. Optionally specify a hashFunction used to generate the hash values for the keys contained in this unordered multimap. If hashFunction is not supplied, a default-constructed object of the (template parameter) type HASH is used. Optionally specify a key-equivalence functor keyEqual used to verify that two keys are equivalent. If keyEqual is not supplied, a default-constructed object of the (template parameter) type EQUAL is used. Optionally specify a basicAllocator used to supply memory. If basicAllocator is not supplied, a default-constructed object of the (template parameter) type ALLOCATOR is used. If the type ALLOCATOR is bsl::allocator (the default), then basicAllocator, if supplied, shall be convertible to bslma::Allocator *. If the type ALLOCATOR is bsl::allocator and basicAllocator is not supplied, the currently installed default allocator is used.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::unordered_multimap ( const unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR > &  original  )  [inherited]

Create an unordered multimap having the same value as the specified original object. Use a copy of original.hash_function() to generate hash values for the keys contained in this unordered multimap. Use a copy of original.key_eq() to verify that two keys are equivalent. Use the allocator returned by 'bslallocator_traits<ALLOCATOR>:: select_on_container_copy_construction(original.get_allocator())' to allocate memory. This method requires that the (template parameter) types KEY and VALUE both be copy-insertable into this unordered multimap (see Requirements on KEY and VALUE).

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::unordered_multimap ( BloombergLP::bslmf::MovableRef< unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR > >  original  )  [inherited]

Create an unordered multimap having the same value as the specified original object by moving (in constant time) the contents of original to the new unordered multimap. Use a copy of original.hash_function() to generate hash values for the keys contained in this unordered multimap. Use a copy of original.key_eq() to verify that two keys are equivalent. The allocator associated with original is propagated for use in the newly-created unordered multimap. original is left in a valid but unspecified state.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::unordered_multimap ( const unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR > &  original,
const typename type_identity< ALLOCATOR >::type basicAllocator 
) [inherited]

Create an unordered multimap having the same value as the specified original object that uses the specified basicAllocator to supply memory. Use a copy of original.hash_function() to generate hash values for the keys contained in this unordered multimap. Use a copy of original.key_eq() to verify that two keys are equivalent. This method requires that the (template parameter) types KEY and VALUE both be copy-insertable into this unordered multimap (see Requirements on KEY and VALUE). Note that a bslma::Allocator * can be supplied for basicAllocator if the (template parameter) type ALLOCATOR is bsl::allocator (the default).

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::unordered_multimap ( BloombergLP::bslmf::MovableRef< unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR > >  original,
const typename type_identity< ALLOCATOR >::type basicAllocator 
) [inherited]

Create an unordered multimap having the same value as the specified original object that uses the specified basicAllocator to supply memory. The contents of original are moved (in constant time) to the new unordered multimap if 'basicAllocator == original.get_allocator()', and are move-inserted (in linear time) using basicAllocator otherwise. original is left in a valid but unspecified state. Use a copy of original.hash_function() to generate hash values for the keys contained in this unordered multimap. Use a copy of original.key_eq() to verify that two keys are equivalent. This method requires that the (template parameter) types KEY and VALUE both be move-insertable into this unordered multimap (see Requirements on KEY and VALUE). Note that a bslma::Allocator * can be supplied for basicAllocator if the (template parameter) type ALLOCATOR is bsl::allocator (the default).

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
template<class INPUT_ITERATOR >
bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::unordered_multimap ( INPUT_ITERATOR  first,
INPUT_ITERATOR  last,
size_type  initialNumBuckets = 0,
const HASH &  hashFunction = HASH(),
const EQUAL &  keyEqual = EQUAL(),
const ALLOCATOR &  basicAllocator = ALLOCATOR() 
) [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
template<class INPUT_ITERATOR >
bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::unordered_multimap ( INPUT_ITERATOR  first,
INPUT_ITERATOR  last,
size_type  initialNumBuckets,
const HASH &  hashFunction,
const ALLOCATOR &  basicAllocator 
) [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
template<class INPUT_ITERATOR >
bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::unordered_multimap ( INPUT_ITERATOR  first,
INPUT_ITERATOR  last,
size_type  initialNumBuckets,
const ALLOCATOR &  basicAllocator 
) [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
template<class INPUT_ITERATOR >
bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::unordered_multimap ( INPUT_ITERATOR  first,
INPUT_ITERATOR  last,
const ALLOCATOR &  basicAllocator 
) [inherited]

Create an unordered multimap, and insert each value_type object in the sequence starting at the specified first element, and ending immediately before the specified last element. Optionally specify an initialNumBuckets indicating the minimum initial size of the array of buckets of this container. If initialNumBuckets is not supplied, a single empty bucket is used if first and last denote an empty range, and an unspecified number of buckets is used otherwise. Optionally specify a hashFunction used to generate hash values for the keys contained in this unordered multimap. If hashFunction is not supplied, a default-constructed object of (template parameter) type HASH is used. Optionally specify a key-equivalence functor keyEqual used to verify that two keys are equivalent. If keyEqual is not supplied, a default-constructed object of (template parameter) type EQUAL is used. Optionally specify a basicAllocator used to supply memory. If basicAllocator is not supplied, a default-constructed object of the (template parameter) type ALLOCATOR is used. If the type ALLOCATOR is bsl::allocator and basicAllocator is not supplied, the currently installed default allocator is used to supply memory. The (template parameter) type INPUT_ITERATOR shall meet the requirements of an input iterator defined in the C++11 standard [24.2.3] providing access to values of a type convertible to value_type, and value_type must be emplace-constructible from *i into this unordered multimap, where i is a dereferenceable iterator in the range [first .. last) (see Requirements on KEY and VALUE). The behavior is undefined unless first and last refer to a sequence of valid values where first is at a position at or before last. Note that a bslma::Allocator * can be supplied for basicAllocator if the type ALLOCATOR is bsl::allocator (the default).

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::unordered_multimap ( std::initializer_list< value_type values,
size_type  initialNumBuckets = 0,
const HASH &  hashFunction = HASH(),
const EQUAL &  keyEqual = EQUAL(),
const ALLOCATOR &  basicAllocator = ALLOCATOR() 
) [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::unordered_multimap ( std::initializer_list< value_type values,
size_type  initialNumBuckets,
const HASH &  hashFunction,
const ALLOCATOR &  basicAllocator 
) [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::unordered_multimap ( std::initializer_list< value_type values,
size_type  initialNumBuckets,
const ALLOCATOR &  basicAllocator 
) [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::unordered_multimap ( std::initializer_list< value_type values,
const ALLOCATOR &  basicAllocator 
) [inherited]

Create an unordered multimap and insert each value_type object in the specified values initializer list. Optionally specify an initialNumBuckets indicating the minimum initial size of the array of buckets of this container. If initialNumBuckets is not supplied, a single empty bucket is used if values is empty, and an unspecified number of buckets is used otherwise. Optionally specify a hashFunction used to generate the hash values for the keys contained in this unordered multimap. If hashFunction is not supplied, a default-constructed object of the (template parameter) type HASH is used. Optionally specify a key-equivalence functor keyEqual used to verify that two keys are equivalent. If keyEqual is not supplied, a default-constructed object of the (template parameter) type EQUAL is used. Optionally specify a basicAllocator used to supply memory. If basicAllocator is not supplied, a default-constructed object of the (template parameter) type ALLOCATOR is used. If the type ALLOCATOR is bsl::allocator and basicAllocator is not supplied, the currently installed default allocator is used to supply memory. This method requires that the (template parameter) types KEY and VALUE both be copy-insertable into this unordered multimap (see Requirements on KEY and VALUE). Note that a bslma::Allocator * can be supplied for basicAllocator if the type ALLOCATOR is bsl::allocator (the default).

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::~unordered_multimap (  )  [inherited]

Destroy this object.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
unordered_multimap& bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::operator= ( const unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR > &  rhs  )  [inherited]

Assign to this object the value, hash function, and key-equivalence comparator of the specified rhs object, propagate to this object the allocator of rhs if the ALLOCATOR type has trait propagate_on_container_copy_assignment, and return a reference providing modifiable access to this object. If an exception is thrown, *this is left in a valid but unspecified state. This method requires that the (template parameter) types KEY and VALUE both be copy-assignable and copy-insertable into this unordered multimap (see Requirements on KEY and VALUE).

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
unordered_multimap& operator= (BloombergLP::bslmf::MovableRef<unordered_multimap> rhs) BSLS_KEYWORD_NOEXCEPT_SPECIFICATION( AllocatorTraits unordered_multimap& bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::operator= ( std::initializer_list< value_type values  )  [inherited]

< Assign to this object the value, hash function, and key-equivalence comparator of the specified rhs object, propagate to this object the allocator of rhs if the ALLOCATOR type has trait propagate_on_container_move_assignment, and return a reference providing modifiable access to this object. The contents of rhs are moved (in constant time) to this unordered multimap if get_allocator() == rhs.get_allocator() (after accounting for the aforementioned trait); otherwise, all elements in this unordered multimap are either destroyed or move-assigned to, and each additional element in rhs is move-inserted into this unordered multimap. rhs is left in a valid but unspecified state, and if an exception is thrown, *this is left in a valid but unspecified state. This method requires that the (template parameter) types KEY and VALUE both be move-assignable and move-insertable into this unordered multimap (see Requirements on KEY and VALUE). Assign to this object the value resulting from first clearing this unordered multimap and then inserting each value_type object in the specified values initializer list, and return a reference providing modifiable access to this object. This method requires that the (template parameter) types KEY and VALUE both be copy-insertable into this unordered multimap (see Requirements on KEY and VALUE).

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
iterator bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::begin (  )  [inherited]

Return an iterator providing modifiable access to the first value_type object (in the sequence of value_type objects) maintained by this unordered multimap, or the end iterator if this unordered multimap is empty.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
iterator bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::end (  )  [inherited]

Return an iterator providing modifiable access to the past-the-end position in the sequence of value_type objects maintained by this unordered multimap.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
local_iterator bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::begin ( size_type  index  )  [inherited]

Return a local iterator providing modifiable access to the first value_type object in the sequence of value_type objects of the bucket having the specified index in the array of buckets maintained by this unordered multimap, or the end(index) iterator if the indexed bucket is empty. The behavior is undefined unless index < bucket_count().

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
local_iterator bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::end ( size_type  index  )  [inherited]

Return a local iterator providing modifiable access to the past-the-end position in the sequence of value_type objects of the bucket having the specified index in the array of buckets maintained by this unordered multimap. The behavior is undefined unless index < bucket_count().

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
void bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::clear (  )  [inherited]

Remove all entries from this unordered multimap. Note that this object will be empty after this call, but allocated memory may be retained for future use.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
template<class LOOKUP_KEY >
enable_if< BloombergLP::bslmf::IsTransparentPredicate<HASH, LOOKUP_KEY>::value && BloombergLP::bslmf::IsTransparentPredicate<EQUAL,LOOKUP_KEY>::value, pair<iterator, iterator> >::type bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::equal_range ( const LOOKUP_KEY &  key  )  [inline, inherited]
Parameters:
key Return a pair of iterators providing modifiable access to the sequence of value_type objects in this unordered multimap with a key equivalent to the specified key, where the first iterator is positioned at the start of the sequence, and the second is positioned one past the end of the sequence. If this unordered multimap contains no value_type objects with a key equivalent to key, then the two returned iterators will have the same value. The behavior is undefined unless key is equivalent to the key of the elements of at most one equivalent-key group in this unordered multimap.

Note: implemented inline due to Sun CC compilation error.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
pair<iterator, iterator> bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::equal_range ( const key_type key  )  [inherited]

Return a pair of iterators providing modifiable access to the sequence of value_type objects in this unordered multimap with a key equivalent to the specified key, where the first iterator is positioned at the start of the sequence, and the second is positioned one past the end of the sequence. If this unordered multimap contains no value_type objects with a key equivalent to key, then the two returned iterators will have the same value.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
size_type bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::erase ( const key_type key  )  [inherited]

Remove from this unordered multimap all value_type objects with a key equivalent to the specified key, if such exist, and return the number of objects erased; otherwise, if there are no value_type objects with a key equivalent to key, return 0 with no other effect. This method invalidates only iterators and references to the removed element and previously saved values of the end() iterator, and preserves the relative order of the elements not removed.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
iterator bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::erase ( const_iterator  position  )  [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
iterator bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::erase ( iterator  position  )  [inherited]

Remove from this unordered multimap the value_type object at the specified position, and return an iterator referring to the element immediately following the removed element, or to the past-the-end position if the removed element was the last element in the sequence of elements maintained by this unordered multimap. This method invalidates only iterators and references to the removed element and previously saved values of the end() iterator, and preserves the relative order of the elements not removed. The behavior is undefined unless position refers to a value_type object in this unordered multimap.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
iterator bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::erase ( const_iterator  first,
const_iterator  last 
) [inherited]

Remove from this unordered multimap the value_type objects starting at the specified first position up to, but not including, the specified last position, and return last. This method invalidates only iterators and references to the removed element and previously saved values of the end() iterator, and preserves the relative order of the elements not removed. The behavior is undefined unless first and last either refer to elements in this unordered multimap or are the end iterator, and the first position is at or before the last position in the sequence provided by this container.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
template<class LOOKUP_KEY >
enable_if< BloombergLP::bslmf::IsTransparentPredicate<HASH, LOOKUP_KEY>::value && BloombergLP::bslmf::IsTransparentPredicate<EQUAL,LOOKUP_KEY>::value, iterator>::type bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::find ( const LOOKUP_KEY &  key  )  [inline, inherited]
Parameters:
key Return an iterator providing modifiable access to the first value_type object in the sequence of all the value_type objects of this unordered multimap with a key equivalent to the specified key, if such entries exist, and the past-the-end (end) iterator otherwise. The behavior is undefined unless key is equivalent to the key of the elements of at most one equivalent-key group in this unordered multimap.

Note: implemented inline due to Sun CC compilation error.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
iterator bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::find ( const key_type key  )  [inherited]

Return an iterator providing modifiable access to the first value_type object in the sequence of all the value_type objects of this unordered multimap with a key equivalent to the specified key, if such entries exist, and the past-the-end (end) iterator otherwise.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
iterator bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::insert ( const value_type value  )  [inherited]

Insert the specified value into this unordered multimap, and return an iterator referring to the newly inserted value_type object. This method requires that the (template parameter) types KEY and VALUE both be copy-insertable into this unordered multimap (see Requirements on KEY and VALUE).

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
template<class ALT_VALUE_TYPE >
enable_if<is_convertible<ALT_VALUE_TYPE, value_type>::value, iterator>::type bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::insert ( BSLS_COMPILERFEATURES_FORWARD_REF(ALT_VALUE_TYPE)  value  )  [inline, inherited]
Parameters:
value Insert into this unordered multimap a value_type object created from the specified value, and return an iterator referring to the newly inserted value_type object. This method requires that the (template parameter) types KEY and VALUE both be move-insertable into this unordered multimap (see Requirements on KEY and VALUE), and the value_type be constructible from the (template parameter) ALT_VALUE_TYPE.

References BSLS_COMPILERFEATURES_FORWARD, and bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::emplace().

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
iterator bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::insert ( const_iterator  hint,
const value_type value 
) [inherited]

Insert the specified value into this unordered multimap (in constant time if the specified hint refers to an element in this container with a key equivalent to the key of value), and return an iterator referring to the newly inserted value_type object. If hint does not refer to an element in this container with a key equivalent to the key of value, this operation has worst case O[N] and average case constant-time complexity, where N is the size of this unordered multimap. This method requires that the (template parameter) types KEY and VALUE both be copy-insertable into this unordered multimap (see Requirements on KEY and VALUE). The behavior is undefined unless hint is an iterator in the range [begin() .. end()] (both endpoints included).

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
template<class ALT_VALUE_TYPE >
enable_if<is_convertible<ALT_VALUE_TYPE, value_type>::value, iterator>::type bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::insert ( const_iterator  hint,
BSLS_COMPILERFEATURES_FORWARD_REF(ALT_VALUE_TYPE)  value 
) [inline, inherited]
Parameters:
value Insert into this unordered multimap a value_type object created from the specified value (in constant time if the specified hint refers to an element in this container with a key equivalent to the key of value), and return an iterator referring to the newly inserted value_type object. If hint does not refer to an element in this container with a key equivalent to the key of value, this operation has worst case O[N] and average case constant-time complexity, where N is the size of this unordered multimap. This method requires that the (template parameter) types KEY and VALUE both be move-insertable into this unordered multimap (see Requirements on KEY and VALUE), and the value_type be constructible from the (template parameter) ALT_VALUE_TYPE. The behavior is undefined unless hint is an iterator in the range [begin() .. end()] (both endpoints included).

References BSLS_COMPILERFEATURES_FORWARD, and bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::emplace_hint().

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
template<class INPUT_ITERATOR >
void bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::insert ( INPUT_ITERATOR  first,
INPUT_ITERATOR  last 
) [inherited]

Insert into this unordered multimap the value of each value_type object in the range starting at the specified first iterator and ending immediately before the specified last iterator. The (template parameter) type INPUT_ITERATOR shall meet the requirements of an input iterator defined in the C++11 standard [24.2.3] providing access to values of a type convertible to value_type, and value_type must be emplace-constructible from *i into this unordered multimap, where i is a dereferenceable iterator in the range [first .. last) (see Requirements on KEY and VALUE). The behavior is undefined unless first and last refer to a sequence of valid values where first is at a position at or before last.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
void bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::insert ( std::initializer_list< value_type values  )  [inherited]

Insert into this unordered multimap the value of each value_type object in the specified values initializer list. This method requires that the (template parameter) types KEY and VALUE both be copy-insertable into this unordered multimap (see Requirements on KEY and VALUE).

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
template<class... Args>
iterator bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::emplace ( Args &&...  args  )  [inherited]

Insert into this unordered multimap a newly created value_type object, constructed by forwarding get_allocator() (if required) and the specified (variable number of) args to the corresponding constructor of value_type. Return an iterator referring to the newly created and inserted object in this unordered multimap. This method requires that the (template parameter) types KEY and VALUE both be emplace-constructible from args (see Requirements on KEY and VALUE).

Referenced by bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::insert().

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
template<class... Args>
iterator bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::emplace_hint ( const_iterator  hint,
Args &&...  args 
) [inherited]

Insert into this unordered multimap a newly created value_type object, constructed by forwarding get_allocator() (if required) and the specified (variable number of) args to the corresponding constructor of value_type (in constant time if the specified hint refers to an element in this container with a key equivalent to the key of the newly created value_type object), and return an iterator referring to the newly created and inserted object. If hint does not refer to an element in this container with a key equivalent to the key of the newly created value_type object, this operation has worst case O[N] and average case constant-time complexity, where N is the size of this unordered multimap. This method requires that the (template parameter) types KEY and VALUE both be emplace-constructible from args (see Requirements on KEY and VALUE). The behavior is undefined unless hint is an iterator in the range [begin() .. end()] (both endpoints included).

Referenced by bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::insert().

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
void bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::max_load_factor ( float  newLoadFactor  )  [inherited]

Set the maximum load factor of this container to the specified newLoadFactor.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
void bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::rehash ( size_type  numBuckets  )  [inherited]

Change the size of the array of buckets maintained by this container to the specified numBuckets, and redistribute all the contained elements into the new sequence of buckets, according to their hash values. Note that this operation has no effect if rehashing the elements into numBuckets would cause this unordered multimap to exceed its max_load_factor.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
void bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::reserve ( size_type  numElements  )  [inherited]

Increase the number of buckets of this unordered multimap to a quantity such that the ratio between the specified numElements and the new number of buckets does not exceed max_load_factor. Note that this guarantees that, after the reserve, elements can be inserted to grow the container to size() == numElements without rehashing. Also note that memory allocations may still occur when growing the container to size() == numElements. Also note that this operation has no effect if numElements <= size().

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
const_iterator bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::begin (  )  const [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
const_iterator bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::cbegin (  )  const [inherited]

Return an iterator providing non-modifiable access to the first value_type object in the sequence of value_type objects maintained by this unordered multimap, or the end iterator if this unordered multimap is empty.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
const_iterator bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::end (  )  const [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
const_iterator bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::cend (  )  const [inherited]

Return an iterator providing non-modifiable access to the past-the-end position in the sequence of value_type objects maintained by this unordered multimap.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
bool bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::empty (  )  const [inherited]

Return true if this unordered multimap contains no elements, and false otherwise.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
size_type bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::size (  )  const [inherited]

Return the number of elements in this unordered multimap.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
size_type bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::max_size (  )  const [inherited]

Return a theoretical upper bound on the largest number of elements that this unordered multimap could possibly hold. Note that there is no guarantee that the unordered multimap can successfully grow to the returned size, or even close to that size without running out of resources.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
EQUAL bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::key_eq (  )  const [inherited]

Return (a copy of) the key-equivalence binary functor that returns true if the value of two key_type objects are equivalent, and false otherwise.

Referenced by bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::count().

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
HASH bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::hash_function (  )  const [inherited]

Return (a copy of) the hash unary functor used by this unordered multimap to generate a hash value (of type size_type) for a key_type object.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
template<class LOOKUP_KEY >
enable_if< BloombergLP::bslmf::IsTransparentPredicate<HASH, LOOKUP_KEY>::value && BloombergLP::bslmf::IsTransparentPredicate<EQUAL,LOOKUP_KEY>::value, const_iterator>::type bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::find ( const LOOKUP_KEY &  key  )  const [inline, inherited]

< Return an iterator providing modifiable access to the first value_type object in this unordered multimap whose key is equivalent to the specified key, if such an entry exists, and the past-the-end (end) iterator otherwise. The behavior is undefined unless key is equivalent to the key of the elements of at most one equivalent-key group in this unordered multimap.

Note: implemented inline due to Sun CC compilation error.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
const_iterator bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::find ( const key_type key  )  const [inherited]

Return an iterator providing non-modifiable access to the first value_type object in the sequence of value_type objects of this unordered multimap with a key equivalent to the specified key, if such entries exist, and the past-the-end (end) iterator otherwise.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
template<class LOOKUP_KEY >
enable_if< BloombergLP::bslmf::IsTransparentPredicate<HASH, LOOKUP_KEY>::value && BloombergLP::bslmf::IsTransparentPredicate<EQUAL,LOOKUP_KEY>::value, size_type>::type bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::count ( const LOOKUP_KEY &  key  )  const [inline, inherited]

< Return the number of value_type objects in this unordered multimap with a key equivalent to the specified key. The behavior is undefined unless key is equivalent to the key of the elements of at most one equivalent-key group in this unordered multimap.

Note: implemented inline due to Sun CC compilation error.

References bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::key_eq().

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
size_type bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::count ( const key_type key  )  const [inherited]

Return the number of value_type objects in this unordered multimap with a key equivalent to the specified key.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
template<class LOOKUP_KEY >
enable_if< BloombergLP::bslmf::IsTransparentPredicate<HASH, LOOKUP_KEY>::value && BloombergLP::bslmf::IsTransparentPredicate<EQUAL,LOOKUP_KEY>::value, pair<const_iterator, const_iterator> >::type bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::equal_range ( const LOOKUP_KEY &  key  )  const [inline, inherited]

< Return a pair of iterators providing non-modifiable access to the sequence of value_type objects in this unordered multimap with a key equivalent to the specified key, where the first iterator is positioned at the start of the sequence, and the second is positioned one past the end of the sequence. If this unordered multimap contains no value_type objects with a key equivalent to key, then the two returned iterators will have the same value. The behavior is undefined unless key is equivalent to the key of the elements of at most one equivalent-key group in this unordered multimap.

Note: implemented inline due to Sun CC compilation error.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
pair<const_iterator, const_iterator> bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::equal_range ( const key_type key  )  const [inherited]

Return a pair of iterators providing non-modifiable access to the sequence of value_type objects in this unordered multimap with a key equivalent to the specified key, where the first iterator is positioned at the start of the sequence, and the second is positioned one past the end of the sequence. If this unordered multimap contains no value_type objects with a key equivalent to key, then the two returned iterators will have the same value.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
const_local_iterator bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::begin ( size_type  index  )  const [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
const_local_iterator bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::cbegin ( size_type  index  )  const [inherited]

Return a local iterator providing non-modifiable access to the first value_type object (in the sequence of value_type objects) of the bucket having the specified index in the array of buckets maintained by this unordered multimap, or the end(index) iterator if the indexed bucket is empty. The behavior is undefined unless index < bucket_count().

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
const_local_iterator bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::end ( size_type  index  )  const [inherited]
template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
const_local_iterator bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::cend ( size_type  index  )  const [inherited]

Return a local iterator providing non-modifiable access to the past-the-end position (in the sequence of value_type objects) of the bucket having the specified index in the array of buckets maintained by this unordered multimap. The behavior is undefined unless index < bucket_count().

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
size_type bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::bucket ( const key_type key  )  const [inherited]

Return the index of the bucket, in the array of buckets of this container, where a value with a key equivalent to the specified key would be inserted.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
size_type bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::bucket_count (  )  const [inherited]

Return the number of buckets in the array of buckets maintained by this unordered multimap.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
size_type bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::max_bucket_count (  )  const [inherited]

Return a theoretical upper bound on the largest number of buckets that this container could possibly manage. Note that there is no guarantee that the unordered multimap can successfully grow to the returned size, or even close to that size without running out of resources.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
size_type bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::bucket_size ( size_type  index  )  const [inherited]

Return the number of elements contained in the bucket at the specified index in the array of buckets maintained by this container. The behavior is undefined unless index < bucket_count().

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
float bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::load_factor (  )  const [inherited]

Return the current ratio between the size of this container and the number of buckets. The load factor is a measure of how full the container is, and a higher load factor typically leads to an increased number of collisions, thus resulting in a loss of performance.

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
float bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::max_load_factor (  )  const [inherited]

Return the maximum load factor allowed for this container. Note that if an insert operation would cause the load factor to exceed the max_load_factor, that same insert operation will increase the number of buckets and rehash the elements of the container into those buckets (see rehash).

template<class KEY , class VALUE , class HASH , class EQUAL , class ALLOCATOR >
bool bsl::operator== ( const unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR > &  lhs,
const unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR > &  rhs 
)

Return true if the specified lhs and rhs objects have the same value, and false otherwise. Two unordered_multimap objects have the same value if they have the same number of key-value pairs, and each key-value pair that is contained in one of the objects is also contained in the other object. This method requires that the (template parameter) types KEY and VALUE both be equality-comparable (see Requirements on KEY and VALUE).

template<class KEY , class VALUE , class HASH , class EQUAL , class ALLOCATOR >
bool bsl::operator!= ( const unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR > &  lhs,
const unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR > &  rhs 
)

Return true if the specified lhs and rhs objects do not have the same value, and false otherwise. Two unordered_multimap objects do not have the same value if they do not have the same number of key-value pairs, or some key-value pair that is contained in one of the objects is not also contained in the other object. This method requires that the (template parameter) types KEY and VALUE both be equality-comparable (see Requirements on KEY and VALUE).

template<class KEY , class VALUE , class HASH , class EQUAL , class ALLOCATOR >
void bsl::swap ( unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR > &  a,
unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR > &  b 
)

Exchange the value, hasher, key-equality functor, and max_load_factor of the specified a object with those of the specified b object; also exchange the allocator of a with that of b if the (template parameter) type ALLOCATOR has the propagate_on_container_swap trait, and do not modify either allocator otherwise. This function provides the no-throw exception-safety guarantee if and only if both the (template parameter) types HASH and EQUAL provide no-throw swap operations; if an exception is thrown, both objects are left in valid but unspecified states. This operation guarantees O[1] complexity. The behavior is undefined unless either a was created with the same allocator as b or ALLOCATOR has the propagate_on_container_swap trait.


Variable Documentation

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
void swap (unordered_multimap& other) BSLS_KEYWORD_NOEXCEPT_SPECIFICATION( AllocatorTraits allocator_type bsl::unordered_multimap< KEY, VALUE, HASH, EQUAL, ALLOCATOR >::get_allocator() const BSLS_KEYWORD_NOEXCEPT [inherited]

< Exchange the value, hasher, key-equality functor, and max_load_factor of this object with those of the specified other object; also exchange the allocator of this object with that of other if the (template parameter) type ALLOCATOR has the propagate_on_container_swap trait, and do not modify either allocator otherwise. This method provides the no-throw exception-safety guarantee if and only if both the (template parameter) types HASH and EQUAL provide no-throw swap operations; if an exception is thrown, both objects are left in valid but unspecified states. This operation guarantees O[1] complexity. The behavior is undefined unless either this object was created with the same allocator as other or ALLOCATOR has the propagate_on_container_swap trait. Return (a copy of) the allocator used for memory allocation by this unordered multimap.


Friends

template<class KEY , class VALUE , class HASH = bsl::hash<KEY>, class EQUAL = bsl::equal_to<KEY>, class ALLOCATOR = bsl::allocator<bsl::pair<const KEY, VALUE> >>
template<class KEY2 , class VALUE2 , class HASH2 , class EQUAL2 , class ALLOCATOR2 >
bool operator== ( const unordered_multimap< KEY2, VALUE2, HASH2, EQUAL2, ALLOCATOR2 > &  ,
const unordered_multimap< KEY2, VALUE2, HASH2, EQUAL2, ALLOCATOR2 > &   
) [friend, inherited]