|
C++ Actor Framework 1.0.0
|
Intrusive base for singly linked types that allows queues to use T with dummy nodes.
More...
#include <singly_linked.hpp>
Public Types | |
| using | node_type = singly_linked<T> |
| The type for dummy nodes in singly linked lists. | |
| using | node_pointer = node_type* |
| Type of the pointer connecting two singly linked nodes. | |
Public Member Functions | |
| singly_linked (node_pointer n) noexcept | |
| singly_linked (const singly_linked &)=delete | |
| singly_linked & | operator= (const singly_linked &)=delete |
Public Attributes | |
| node_pointer | next = nullptr |
| Intrusive pointer to the next element. | |
Intrusive base for singly linked types that allows queues to use T with dummy nodes.