|
Collection
|
Represents a node in a singly linked list. More...
#include <Array.h>
Public Attributes | |
| const void * | item |
| struct ArrayNode * | next |
Represents a node in a singly linked list.
Each ArrayNode stores a generic pointer to an item and a pointer to the next ArrayNode in the list.
| const void* ArrayNode::item |
📦 Pointer to the stored item (generic type)