#include <bits/concept_check.h>Go to the source code of this file.
Namespaces | |
| namespace | _GLIBCXX_STD |
Classes | |
| class | _GLIBCXX_STD::set< _Key, _Compare, _Alloc > |
| A standard container made up of unique keys, which can be retrieved in logarithmic time. More... | |
Defines | |
| #define | _SET_H 1 |
Functions | |
| template<class _Key, class _Compare, class _Alloc> | |
| bool | _GLIBCXX_STD::operator== (const set< _Key, _Compare, _Alloc > &__x, const set< _Key, _Compare, _Alloc > &__y) |
| Set equality comparison. | |
| template<class _Key, class _Compare, class _Alloc> | |
| bool | _GLIBCXX_STD::operator< (const set< _Key, _Compare, _Alloc > &__x, const set< _Key, _Compare, _Alloc > &__y) |
| Set ordering relation. | |
| template<class _Key, class _Compare, class _Alloc> | |
| bool | _GLIBCXX_STD::operator!= (const set< _Key, _Compare, _Alloc > &__x, const set< _Key, _Compare, _Alloc > &__y) |
| Returns !(x == y). | |
| template<class _Key, class _Compare, class _Alloc> | |
| bool | _GLIBCXX_STD::operator> (const set< _Key, _Compare, _Alloc > &__x, const set< _Key, _Compare, _Alloc > &__y) |
| Returns y < x. | |
| template<class _Key, class _Compare, class _Alloc> | |
| bool | _GLIBCXX_STD::operator<= (const set< _Key, _Compare, _Alloc > &__x, const set< _Key, _Compare, _Alloc > &__y) |
| Returns !(y < x). | |
| template<class _Key, class _Compare, class _Alloc> | |
| bool | _GLIBCXX_STD::operator>= (const set< _Key, _Compare, _Alloc > &__x, const set< _Key, _Compare, _Alloc > &__y) |
| Returns !(x < y). | |
| template<class _Key, class _Compare, class _Alloc> | |
| void | _GLIBCXX_STD::swap (set< _Key, _Compare, _Alloc > &__x, set< _Key, _Compare, _Alloc > &__y) |
| See std::set::swap(). | |
Definition in file stl_set.h.
1.4.7