Declaration of doubly linked lists and iterators. More...
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.