BeBOP Optimized Sparse Kernel Interface Library
1.0.1h
|
Node in the linked list. More...
#include <simplelist.h>
Data Fields | |
const void * | element |
Linked-list node data. | |
struct tagSimplenode_t * | next |
Next element. |
Node in the linked list.
A node encapsulates an arbitrary data element, and furthermore contains a pointer to the next element of the list (or NULL if none).
Note that the element should logically be read-only.
const void* tagSimplenode_t::element |
Linked-list node data.
Referenced by simplelist_Append(), simplelist_GetElem(), simplelist_GetIterObj(), and simplelist_GetLastElem().
struct tagSimplenode_t* tagSimplenode_t::next |
Next element.
Referenced by simplelist_Append(), simplelist_Destroy(), and simplelist_NextIter().