#include <bits/concept_check.h>
Include dependency graph for stl_set.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 set< Key, Compare, Alloc > &x, const set< Key, Compare, Alloc > &y) |
Set equality comparison. | |
template<class Key, class Compare, class Alloc> | |
bool | operator< (const set< Key, Compare, Alloc > &x, const set< Key, Compare, Alloc > &y) |
Set ordering relation. | |
template<class Key, class Compare, class Alloc> | |
bool | operator!= (const set< Key, Compare, Alloc > &x, const set< Key, Compare, Alloc > &y) |
Returns !(x == y). | |
template<class Key, class Compare, class Alloc> | |
bool | operator> (const set< Key, Compare, Alloc > &x, const set< Key, Compare, Alloc > &y) |
Returns y < x. | |
template<class Key, class Compare, class Alloc> | |
bool | operator<= (const set< Key, Compare, Alloc > &x, const set< Key, Compare, Alloc > &y) |
Returns !(y < x). | |
template<class Key, class Compare, class Alloc> | |
bool | operator>= (const set< Key, Compare, Alloc > &x, const set< Key, Compare, Alloc > &y) |
Returns !(x < y). | |
template<class Key, class Compare, class Alloc> | |
void | swap (set< Key, Compare, Alloc > &x, set< Key, Compare, Alloc > &y) |
See std::set::swap(). |
Definition in file stl_set.h.
|
Returns !(x == y).
|
|
Set ordering relation.
< .See std::lexicographical_compare() for how the determination is made. |
|
Returns !(y < x).
|
|
Set equality comparison.
|
|
Returns y < x.
|
|
Returns !(x < y).
|
|
See std::set::swap().
Definition at line 588 of file stl_set.h. References std::set< Key, Compare, Alloc >::swap(). |