The structure for a doubly-linked storage node. More...

Public Member Functions | |
| link () noexcept=default | |
| Default construct. More... | |
| bool | registered () const noexcept |
| Node registered (linked) in a list? More... | |
| void | deregister () noexcept |
| Deregister the node (after removal) More... | |
Public Attributes | |
| link * | prev_ = nullptr |
| Pointer to prev entry in list. More... | |
| link * | next_ = nullptr |
| Pointer to next entry in list. More... | |
The structure for a doubly-linked storage node.
Definition at line 64 of file DLListBase.H.
|
defaultnoexcept |
Default construct.
|
inlinenoexcept |
Node registered (linked) in a list?
Definition at line 84 of file DLListBase.H.
References DLListBase::link::next_, and DLListBase::link::prev_.
|
inlinenoexcept |
Deregister the node (after removal)
Definition at line 89 of file DLListBase.H.
References DLListBase::link::next_, and DLListBase::link::prev_.
Referenced by DLListBase::remove(), DLListBase::removeHead(), and DLListBase::replace().

| link* prev_ = nullptr |
Pointer to prev entry in list.
Definition at line 69 of file DLListBase.H.
Referenced by DLListBase::link::deregister(), DLListBase::push_back(), DLListBase::push_front(), DLListBase::link::registered(), DLListBase::remove(), DLListBase::replace(), DLListBase::swapDown(), and DLListBase::swapUp().
| link* next_ = nullptr |
Pointer to next entry in list.
Definition at line 74 of file DLListBase.H.
Referenced by DLListBase::link::deregister(), DLListBase::push_back(), DLListBase::push_front(), DLListBase::link::registered(), DLListBase::remove(), DLListBase::removeHead(), DLListBase::replace(), DLListBase::swapDown(), and DLListBase::swapUp().