|
DSA - Data Structures and Algorithms
|
Struct implements base pointer used by List. More...
#include <list.h>
Public Member Functions | |
| NodeBase ()=default | |
| Construct a new NodeBase object. | |
| NodeBase (const NodeBase &other)=default | |
| Construct a new NodeBase object using copy constructor. | |
| auto | operator= (const NodeBase &other) -> NodeBase &=default |
| Construct a new NodeBase object using copy assignment. | |
| NodeBase (NodeBase &&other)=default | |
| Construct NodeBase object using move constructor. | |
| auto | operator= (NodeBase &&other) -> NodeBase &=default |
| Construct NodeBase object using move assignment. | |
| virtual | ~NodeBase ()=default |
| Destroy the Node Base object. | |
Friends | |
| class | List< T > |
Struct implements base pointer used by List.