Abstract Linked Lists - v1.0.4
    Preparing search index...

    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

    Index

    Properties

    Properties

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