InputIterator, size_type n, const hasher& h) [2] | Multiple Hashed Associative Container | Creates a hash_multimap with a copy of a range and a bucket count of at least |
template <class InputIterator> hash_multimap(InputIterator, InputIterator, size_type n, const hasher& h, const key_equal& k) [2] | Multiple Hashed Associative Container | Creates a hash_multimap with a copy of a range and a bucket count of at least |
hash_multimap(const hash_multimap&) | Container | The copy constructor. |
hash_multimap& operator=(const hash_multimap&) | Container | The assignment operator |
void swap(hash_multimap&) | Container | Swaps the contents of two hash_multimaps. |
iterator insert(const value_type& x) | Multiple Associative Container | Inserts |
template <class InputIterator> void insert(InputIterator, InputIterator) [2] | Multiple Associative Container | Inserts a range into the |
void erase(iterator pos) | Associative Container | Erases the element pointed to by |
size_type erase(const key_type& k) | Associative Container | Erases the element whose key is |
void erase(iterator first, iterator last) | Associative Container | Erases all elements in a range. |
void clear() | Associative Container | Erases all of the elements. |
const_iterator find(const key_type& k) const | Associative Container | Finds an element whose key is |
iterator find(const key_type& k) | Associative Container | Finds an element whose key is |
size_type count(const key_type& k) const | Associative Container | Counts the number of elements whose key is |
pair<const_iterator, const_iterator> equal_range(const key_type& k) const | Associative Container | Finds a range containing all elements whose key is |
pair<iterator, iterator> equal_range(const key_type& k) | Associative Container | Finds a range containing all elements whose key is |
bool operator==(const hash_multimap&, const hash_multimap&) | Hashed Associative Container | Tests two hash_multimaps for equality. This is a global function, not a member function. |
Вы читаете Standard Template Library Programmer's Guide
