Collection
Loading...
Searching...
No Matches
ArrayNode Struct Reference

Represents a node in a singly linked list. More...

#include <Array.h>

Public Attributes

const void * item
struct ArrayNodenext

Detailed Description

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.

Member Data Documentation

◆ item

const void* ArrayNode::item

📦 Pointer to the stored item (generic type)

◆ next

struct ArrayNode* ArrayNode::next

➡️ Pointer to the next ArrayNode in the singly linked list


The documentation for this struct was generated from the following file: