Name |
Description |
multiset [constructor]
|
Constructors |
~multiset [destructor]
|
Destroy this object. |
operator=
|
Assignment operators |
begin
|
begin overloads
|
cbegin
|
Return an iterator providing non‐modifiable access to the first value_type object in the ordered sequence of value_type objects maintained by this multiset, or the end iterator if this multiset is empty. |
cend
|
Return an iterator providing non‐modifiable access to the past‐the‐end element in the ordered sequence of value_type objects maintained by this multiset. |
clear
|
Remove all entries from this multiset. Note that the multiset is empty after this call, but allocated memory may be retained for future use. |
contains
|
Return true if this map contains an element whose key is equivalent to the specified key. |
count
|
Return the number of value_type objects within this multiset that are equivalent to the specified key. |
crbegin
|
Return a reverse iterator providing non‐modifiable access to the last value_type object in the ordered sequence of value_type objects maintained by this multiset, or rend if this multiset is empty. |
crend
|
Return a reverse iterator providing non‐modifiable access to the prior‐to‐the‐beginning element in the ordered sequence of value_type objects maintained by this multiset. |
emplace
|
Insert into this multiset 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 multiset. This method requires that the (template parameter) type KEY be emplace‐constructible from args (see {Requirements on KEY}). |
emplace_hint
|
Insert into this multiset 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 amortized constant time if the specified hint is a valid immediate successor to the value_type object constructed from args). Return an iterator referring to the newly created and inserted object in this multiset. If hint is not a valid immediate successor to the value_type object implied by args, this operation has O[log(N)] complexity where N is the size of this multiset. This method requires that the (template parameter) type KEY be emplace‐constructible from args (see {Requirements on KEY}). The behavior is undefined unless hint is an iterator in the range [begin() .. end()] (both endpoints included). |
empty
|
Return true if this multiset contains no elements, and false otherwise. |
end
|
end overloads
|
equal_range
|
equal_range overloads
|
erase
|
erase overloads
|
find
|
find overloads
|
get_allocator
|
Return (a copy of) the allocator used for memory allocation by this multiset. |
insert
|
insert overloads
|
insert_range
|
Insert into this multiset the value of each value_type object in the specified range if the key equivalent of that object is not already contained in this map. The (template parameter) type RANGE must meet the requirements the C++20 standard [ranges]providing access to values of a type convertible to value_type, and value_type must be emplace‐constructible from *i into this map, where i is a dereferenceable iterator obtained from range (see {Requirements on KEY}). The behavior is undefined if range overlaps this multiset. |
key_comp
|
Return the key‐comparison functor (or function pointer) used by this multiset; if a comparator was supplied at construction, return its value, otherwise return a default constructed key_compare object. Note that this comparator compares objects of type KEY, which is the type of the value_type objects contained in this multiset. |
lower_bound
|
lower_bound overloads
|
max_size
|
Return a theoretical upper bound on the largest number of elements that this multiset could possibly hold. Note that there is no guarantee that the multiset can successfully grow to the returned size, or even close to that size without running out of resources. |
rbegin
|
rbegin overloads
|
rend
|
rend overloads
|
size
|
Return the number of elements in this multiset. |
swap
|
Exchange the value and comparator 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 the (template parameter) type COMPARATOR provides a no‐throw swap operation, and provides the basic exception‐safety guarantee otherwise; if an exception is thrown, both objects are left in valid but unspecified states. This operation has O[1] complexity if either this object was created with the same allocator as other or ALLOCATOR has the propagate_on_container_swap trait; otherwise, it has O[n + m] complexity, where n and m are the number of elements in this object and other, respectively. Note that this method's support for swapping objects created with different allocators when ALLOCATOR does not have the propagate_on_container_swap trait is a departure from the C++ Standard. |
upper_bound
|
upper_bound overloads
|
value_comp
|
Return a functor for comparing two value_type objects using key_comp(). Note that since value_type is an alias to KEY for multiset, this method returns the same functor as key_comp(). |