#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 |
Classes | |
class | std::set< Key, Compare, Alloc > |
A standard container made up of unique keys, which can be retrieved in logarithmic time. More... | |
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. Definition at line 553 of file stl_set.h. |
|
Returns !(y < x). |
|
Set equality comparison.
|
|
Returns y < x. Definition at line 567 of file stl_set.h. References std::operator>(). |
|
Returns !(x < y). Definition at line 581 of file stl_set.h. References std::operator>=(). |
|
See std::set::swap(). Definition at line 588 of file stl_set.h. References std::set< Key, Compare, Alloc >::swap(), and std::swap(). |