Abstract Linked Lists - v1.0.4
    Preparing search index...
    • Detaches the node by updating the next reference of the previous node.

      After detachment, the node's next pointer is set to null.

      Type Parameters

      Parameters

      • instance: N

        The node instance to be detached.

      • previous: null | N

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

      Returns void