Abstract Linked Lists - v1.0.4
    Preparing search index...
    • Creates a new doubly linked list node instance.

      If provided, automatically connects the node with its previous and next nodes.

      Type Parameters

      Parameters

      • Optionalprevious: N["previous"] = null

        The previous node, or null if the node has no previous connection.

      • Optionalnext: N["next"] = null

        The next node, or null if the node has no next connection.

      Returns N

      A new doubly linked list node instance with the specified connections.