#include <bits/concept_check.h>
Include dependency graph for stl_multiset.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Namespaces | |
namespace | std |
Functions | |
template<class Key, class Compare, class Alloc> | |
bool | operator== (const multiset< Key, Compare, Alloc > &x, const multiset< Key, Compare, Alloc > &y) |
Multiset equality comparison. | |
template<class Key, class Compare, class Alloc> | |
bool | operator< (const multiset< Key, Compare, Alloc > &x, const multiset< Key, Compare, Alloc > &y) |
Multiset ordering relation. | |
template<class Key, class Compare, class Alloc> | |
bool | operator!= (const multiset< Key, Compare, Alloc > &x, const multiset< Key, Compare, Alloc > &y) |
Returns !(x == y). | |
template<class Key, class Compare, class Alloc> | |
bool | operator> (const multiset< Key, Compare, Alloc > &x, const multiset< Key, Compare, Alloc > &y) |
Returns y < x. | |
template<class Key, class Compare, class Alloc> | |
bool | operator<= (const multiset< Key, Compare, Alloc > &x, const multiset< Key, Compare, Alloc > &y) |
Returns !(y < x). | |
template<class Key, class Compare, class Alloc> | |
bool | operator>= (const multiset< Key, Compare, Alloc > &x, const multiset< Key, Compare, Alloc > &y) |
Returns !(x < y). | |
template<class Key, class Compare, class Alloc> | |
void | swap (multiset< Key, Compare, Alloc > &x, multiset< Key, Compare, Alloc > &y) |
See std::multiset::swap(). |
Definition in file stl_multiset.h.
|
Returns !(x == y).
Definition at line 551 of file stl_multiset.h. |
|
Multiset ordering relation.
< .See std::lexicographical_compare() for how the determination is made. Definition at line 544 of file stl_multiset.h. |
|
Returns !(y < x).
Definition at line 565 of file stl_multiset.h. |
|
Multiset equality comparison.
Definition at line 527 of file stl_multiset.h. |
|
Returns y < x.
Definition at line 558 of file stl_multiset.h. |
|
Returns !(x < y).
Definition at line 572 of file stl_multiset.h. |
|
Definition at line 579 of file stl_multiset.h. References std::multiset< Key, Compare, Alloc >::swap(). |