Elm
2
ELM is a library providing generic data structures, OS-independent interface, plugins and XML.
|
#include <>>
Public Member Functions | |
SLNode (void) | |
SLNode * | next (void) const |
void | insertAfter (SLNode *node) |
void | removeNext (void) |
Single link node for SLList. It represents the nodes of the SLList implementation. It is usually extended for getting real user nodes.
Insert a node after the current one.
node | Node to insert after. |
Referenced by SLList::addLast().
Get the following next node.
Referenced by SLList::count(), SLList::last(), SLList::removeFirst(), and SLList::removeLast().
Remove the next node if any.
Referenced by SLList::removeLast().