|
FreeNOS
|
Represents an item on the List. More...
#include <List.h>
Public Member Functions | |
| Node (T t) | |
| Constructor. | |
Data Fields | |
| T | data |
| Item of this node. | |
| Node * | prev |
| Previous node. | |
| Node * | next |
| Next node. | |
Represents an item on the List.
|
inline |
Constructor.
Definition at line 50 of file List.h.
References List< T >::Node::next, List< T >::Node::prev, and ZERO.
| T List< T >::Node::data |
Item of this node.
Definition at line 57 of file List.h.
Referenced by HashTable< K, V >::at(), List< T >::at(), List< T >::first(), List< T >::first(), List< T >::get(), List< T >::last(), List< T >::last(), and List< T >::remove().
Next node.
Definition at line 63 of file List.h.
Referenced by List< T >::append(), List< T >::at(), List< T >::clear(), List< T >::contains(), List< T >::get(), List< T >::Node::Node(), List< T >::operator!=(), List< T >::operator==(), List< T >::prepend(), List< T >::remove(), List< T >::remove(), and List< T >::~List().
Previous node.
Definition at line 60 of file List.h.
Referenced by List< T >::append(), List< T >::Node::Node(), List< T >::prepend(), and List< T >::remove().