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

Public Member Functions | |
| link () noexcept=default | |
| Default construct. More... | |
| void | deregister () noexcept |
| Deregister the node (after removal) More... | |
Public Attributes | |
| link * | next_ = nullptr |
| Pointer to next entry in list. More... | |
The structure for a singly-linked storage node.
Definition at line 64 of file SLListBase.H.
|
defaultnoexcept |
Default construct.
|
inlinenoexcept |
Deregister the node (after removal)
Definition at line 79 of file SLListBase.H.
References SLListBase::link::next_.
Referenced by SLListBase::remove(), and SLListBase::removeHead().

| link* next_ = nullptr |
Pointer to next entry in list.
Definition at line 69 of file SLListBase.H.
Referenced by SLListBase::link::deregister(), SLListBase::push_back(), SLListBase::push_front(), SLListBase::remove(), and SLListBase::removeHead().