Interface ISinglyLinkedListNode

Base interface representing a singly linked list node. Defines the minimal structure required for singly linked list operations.

interface ISinglyLinkedListNode {
    next: null | ISinglyLinkedListNode;
}

Implemented by

Properties

Properties

Reference to the next node in the list. Set to null if this is the last node or detached from the list.