zibri
    Preparing search index...

    A node inside a DoublyLinkedList. You should never instantiate this directly.

    Type Parameters

    • T
    Index

    Constructors

    Properties

    Constructors

    Properties

    next: LinkedListNode<T> | undefined = undefined

    The next list node.

    prev: LinkedListNode<T> | undefined = undefined

    The previous list node.

    value: T

    The actual value stored inside this node.