#include <List.hpp>
Inherits Raul::Deletable.

Public Member Functions | |
| Node (T elem) | |
| template<typename Y > | |
| Node (const typename List< Y >::Node ©) | |
| Node * | prev () const |
| void | prev (Node *ln) |
| Node * | next () const |
| void | next (Node *ln) |
| T & | elem () |
| const T & | elem () const |
A node in a List.
This is exposed so the user can allocate Nodes in different thread than the list reader, and insert (e.g. via an Event) it later in the reader thread.
1.7.1