Declaration of doubly linked lists and iterators. More...
#include <ogdf/basic/Array.h>#include <ogdf/basic/basic.h>#include <ogdf/basic/internal/config_autogen.h>#include <ogdf/basic/internal/list_templates.h>#include <ogdf/basic/memory.h>#include <functional>#include <initializer_list>#include <iterator>#include <ostream>#include <random>#include <type_traits>#include <utility>Go to the source code of this file.
Classes | |
| class | ogdf::List< E > |
| Doubly linked lists (maintaining the length of the list). More... | |
| class | ogdf::ListContainer< E, Master > |
| class | ogdf::ListElement< E > |
| Structure for elements of doubly linked lists. More... | |
| class | ogdf::ListIteratorBase< E, isConst, isReverse > |
| Encapsulates a pointer to a list element. More... | |
| class | ogdf::ListPure< E > |
| Doubly linked lists. More... | |
Namespaces | |
| namespace | ogdf |
| The namespace for all OGDF objects. | |
Typedefs | |
| template<class E > | |
| using | ogdf::ListConstIterator = ListIteratorBase< E, true, false > |
| template<class E > | |
| using | ogdf::ListConstReverseIterator = ListIteratorBase< E, true, true > |
| template<class E > | |
| using | ogdf::ListIterator = ListIteratorBase< E, false, false > |
| template<class E > | |
| using | ogdf::ListReverseIterator = ListIteratorBase< E, false, true > |
Functions | |
| template<class E > | |
| std::ostream & | ogdf::operator<< (std::ostream &os, const List< E > &L) |
Prints list L to output stream os. | |
| template<class E > | |
| std::ostream & | ogdf::operator<< (std::ostream &os, const ListPure< E > &L) |
Prints list L to output stream os. | |
| template<class E > | |
| void | ogdf::print (std::ostream &os, const List< E > &L, char delim=' ') |
Prints list L to output stream os using delimiter delim. | |
| template<class E > | |
| void | ogdf::print (std::ostream &os, const ListPure< E > &L, char delim=' ') |
Prints list L to output stream os using delimiter delim. | |
Declaration of doubly linked lists and iterators.
Definition in file List.h.