insert() | Inserts new elements in the unordered multiset. |
begin() | Returns an iterator pointing to the first element in the container or the first element in one of its buckets. |
end() | Returns an iterator pointing to the position immediately after the last element in the container or to the position immediately after the last element in one of its buckets. |
empty() | It returns true if the unordered multiset container is empty. Otherwise, it returns false. |
find() | Returns an iterator that points to the position which has the element. |
cbegin() | Returns a constant iterator pointing to the first element in the container or the first element in one of its buckets. |
cend() | Returns a constant iterator pointing to the position immediately after the last element in the container or immediately after the last element in one of its buckets. |
equal_range() | Returns the range in which all the elements are equal to a given value. |
emplace() | Inserts a new element in the unordered multiset container. |
clear() | Clears the contents of the unordered multiset container. |
count() | Returns the count of elements in the unordered multiset container which is equal to a given value. |
size() | The size() method of unordered multiset is used to count the number of elements of unordered set it is called with. |
max_size | The max_size() of unordered multiset takes the maximum number of elements that the unordered multiset container is able to hold. |
swap() | Swaps the contents of two unordered multiset containers. |
erase() | Used to remove either a single element or, all elements with a definite value or, a range of elements ranging from the start(inclusive) to the end(exclusive). |
bucket() | Returns the bucket number in which a given element is. Bucket size varies from 0 to bucket_count-1. |
bucket_size() | Returns the number of elements in the bucket that has the element val. |
reserve() | The reverse() function of unordered multiset sets the number of buckets in the container (bucket count) to the most appropriate to contain at least n elements. |
max_bucket_count() | Returns the maximum number of buckets that the unordered multiset container can have. |
load_factor() | Returns the current load factor in the unordered multiset container. |
max_load_factor() | Returns the maximum load factor of the unordered multiset container. |
bucket_count() | Returns the total number of buckets in the unordered multiset container. |
hash_function() | This hash function is a unary function that takes a single argument only and returns a unique value of type size_t based on it. |
rehash() | Sets the number of buckets in the container to N or more. |
key_eq() | Returns a boolean value according to the comparison. |
emplace_hint() | Inserts a new element in the unordered multiset container. |
get_allocator | This function gets the stored allocator object and returns the allocator object used to construct the container. |