All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
IdList< T > Class Template Reference Generic Real linked list.Class IdList implements an intrusive Real linked list as a template class. As such, the list elements must provide the links themselfs. For conveniance, we also provide class IdElement that adds both links to an arbitrary class as template parameter. More...
Inheritance diagram for IdList< T >:
![]()
Detailed Descriptiontemplate<class T>
|
|
explicit |
void append | ( | T * | elem | ) |
appends elem
to end of list.
Definition at line 159 of file idlist.h.
Referenced by IdList< soplex::SVSet::DLPSV >::append(), and IdList< soplex::SVSet::DLPSV >::insert().
void append | ( | IdList< T > & | list | ) |
T* first | ( | ) | const |
returns first element in list.
Definition at line 130 of file idlist.h.
Referenced by IdList< soplex::SVSet::DLPSV >::append(), IdList< soplex::SVSet::DLPSV >::insert(), IdList< soplex::SVSet::DLPSV >::isConsistent(), IdList< soplex::SVSet::DLPSV >::move(), IdList< soplex::SVSet::DLPSV >::prepend(), IdList< soplex::SVSet::DLPSV >::prev(), and IdList< soplex::SVSet::DLPSV >::remove().
void insert | ( | T * | elem, |
T * | after | ||
) |
void insert | ( | IdList< T > & | list, |
T * | after | ||
) |
bool isConsistent | ( | ) | const |
consistency check.
Definition at line 314 of file idlist.h.
Referenced by IdList< soplex::SVSet::DLPSV >::IdList().
T* last | ( | ) | const |
returns last element in list.
Definition at line 136 of file idlist.h.
Referenced by IdList< soplex::SVSet::DLPSV >::append(), IdList< soplex::SVSet::DLPSV >::insert(), IdList< soplex::SVSet::DLPSV >::isConsistent(), IdList< soplex::SVSet::DLPSV >::move(), IdList< soplex::SVSet::DLPSV >::next(), IdList< soplex::SVSet::DLPSV >::prepend(), and IdList< soplex::SVSet::DLPSV >::remove().
void move | ( | ptrdiff_t | delta | ) |
T* next | ( | const T * | elem | ) | const |
returns successor of elem
or 0, if elem
is the last element.
Definition at line 142 of file idlist.h.
Referenced by IdList< soplex::SVSet::DLPSV >::isConsistent(), IdList< soplex::SVSet::DLPSV >::remove(), and IdList< soplex::SVSet::DLPSV >::remove_next().
void prepend | ( | T * | elem | ) |
prepends elem
at beginnig of list.
Definition at line 172 of file idlist.h.
Referenced by IdList< soplex::SVSet::DLPSV >::prepend().
void prepend | ( | IdList< T > & | list | ) |
T* prev | ( | const T * | elem | ) | const |
returns predecessor of elem
or 0, if elem
is the first element.
Definition at line 148 of file idlist.h.
Referenced by IdList< soplex::SVSet::DLPSV >::move().
© 2003-2013 by Zuse Institute Berlin (ZIB), Imprint | Generated on Wed Jan 9 2013 for SoPlex by doxygen |