#include <bits/concept_check.h>Go to the source code of this file.
Namespaces | |
| namespace | _GLIBCXX_STD |
Classes | |
| struct | _GLIBCXX_STD::_List_node_base |
| struct | _GLIBCXX_STD::_List_node< _Tp > |
| struct | _GLIBCXX_STD::_List_iterator< _Tp > |
| A list::iterator. More... | |
| struct | _GLIBCXX_STD::_List_const_iterator< _Tp > |
| A list::const_iterator. More... | |
| class | _GLIBCXX_STD::_List_base< _Tp, _Alloc > |
| struct | _GLIBCXX_STD::_List_base< _Tp, _Alloc >::_List_impl |
| class | _GLIBCXX_STD::list< _Tp, _Alloc > |
| A standard container with linear time access to elements, and fixed time insertion/deletion at any point in the sequence. More... | |
Defines | |
| #define | _LIST_H 1 |
Functions | |
| template<typename _Val> | |
| bool | _GLIBCXX_STD::operator== (const _List_iterator< _Val > &__x, const _List_const_iterator< _Val > &__y) |
| template<typename _Val> | |
| bool | _GLIBCXX_STD::operator!= (const _List_iterator< _Val > &__x, const _List_const_iterator< _Val > &__y) |
| template<typename _Tp, typename _Alloc> | |
| bool | _GLIBCXX_STD::operator== (const list< _Tp, _Alloc > &__x, const list< _Tp, _Alloc > &__y) |
| List equality comparison. | |
| template<typename _Tp, typename _Alloc> | |
| bool | _GLIBCXX_STD::operator< (const list< _Tp, _Alloc > &__x, const list< _Tp, _Alloc > &__y) |
| List ordering relation. | |
| template<typename _Tp, typename _Alloc> | |
| bool | _GLIBCXX_STD::operator!= (const list< _Tp, _Alloc > &__x, const list< _Tp, _Alloc > &__y) |
| Based on operator==. | |
| template<typename _Tp, typename _Alloc> | |
| bool | _GLIBCXX_STD::operator> (const list< _Tp, _Alloc > &__x, const list< _Tp, _Alloc > &__y) |
| Based on operator<. | |
| template<typename _Tp, typename _Alloc> | |
| bool | _GLIBCXX_STD::operator<= (const list< _Tp, _Alloc > &__x, const list< _Tp, _Alloc > &__y) |
| Based on operator<. | |
| template<typename _Tp, typename _Alloc> | |
| bool | _GLIBCXX_STD::operator>= (const list< _Tp, _Alloc > &__x, const list< _Tp, _Alloc > &__y) |
| Based on operator<. | |
| template<typename _Tp, typename _Alloc> | |
| void | _GLIBCXX_STD::swap (list< _Tp, _Alloc > &__x, list< _Tp, _Alloc > &__y) |
| See std::list::swap(). | |
Definition in file stl_list.h.
| #define _LIST_H 1 |
Definition at line 62 of file stl_list.h.
1.4.7