iterator end() | Container | Returns an iterator pointing to the end of the hash_multimap. |
const_iterator begin() const | Container | Returns an const_iterator pointing to the beginning of the hash_multimap. |
const_iterator end() const | Container | Returns an const_iterator pointing to the end of the hash_multimap. |
size_type size() const | Container | Returns the size of the hash_multimap. |
size_type max_size() const | Container | Returns the largest possible size of the hash_multimap. |
bool empty() const | Container | true if the hash_multimap's size is 0. |
size_type bucket_count() const | Hashed Associative Container | Returns the number of buckets used by the hash_multimap. |
void resize(size_type n) | Hashed Associative Container | Increases the bucket count to at least n. |
hasher hash_funct() const | Hashed Associative Container | Returns the hasher object used by the hash_multimap. |
key_equal key_eq() const | Hashed Associative Container | Returns the key_equal object used by the hash_multimap. |
hash_multimap() | Container | Creates an empty hash_multimap. |
hash_multimap(size_type n) | Hashed Associative Container | Creates an empty hash_multimap with at least n buckets. |
hash_multimap(size_type n, const hasher& h) | Hashed Associative Container | Creates an empty hash_multimap with at least n buckets, using h as the hash function. |
hash_multimap(size_type n, const hasher& h, const key_equal& k) | Hashed Associative Container | Creates an empty hash_multimap with at least n buckets, using h as the hash function and k as the key equal function. |
template <class InputIterator> hash_multimap(InputIterator, InputIterator) [2] | Multiple Hashed Associative Container | Creates a hash_multimap with a copy of a range. |
template <class InputIterator> hash_multimap(InputIterator, InputIterator, size_type n) [2] | Multiple Hashed Associative Container | Creates a hash_multimap with a copy of a range and a bucket count of at least n. |
template <class InputIterator> hash_multimap(InputIterator, |