Class DoublyLinkedListNode<E>

Type Parameters

  • E = any

Hierarchy

  • LinkedListNode<E>
    • DoublyLinkedListNode

Constructors

Constructors

  • The constructor function initializes the value, next, and previous properties of an object.

    Type Parameters

    • E = any

    Parameters

    • value: E

      The "value" parameter is the value that will be stored in the node. It can be of any data type, as it is defined as a generic type "E".

    Returns DoublyLinkedListNode<E>