| Const reference to T |
size_type | Container | An unsigned integral type. |
difference_type | Container | A signed integral type. |
iterator | Container | Iterator used to iterate through a hash_map. [1] |
const_iterator | Container | Const iterator used to iterate through a hash_map. |
iterator begin() | Container | Returns an iterator pointing to the beginning of the hash_map. |
iterator end() | Container | Returns an iterator pointing to the end of the hash_map. |
const_iterator begin() const | Container | Returns an const_iterator pointing to the beginning of the hash_map. |
const_iterator end() const | Container | Returns an const_iterator pointing to the end of the hash_map. |
size_type size() const | Container | Returns the size of the hash_map. |
size_type max_size() const | Container | Returns the largest possible size of the hash_map. |
bool empty() const | Container | true if the hash_map's size is 0. |
size_type bucket_count() const | Hashed Associative Container | Returns the number of buckets used by the hash_map. |
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_map. |
key_equal key_eq() const | Hashed Associative Container | Returns the key_equal object used by the hash_map. |
hash_map() | Container | Creates an empty hash_map. |
hash_map(size_type n) | Hashed Associative Container | Creates an empty hash_map with at least n buckets. |