Creates a new DoublyLinkedListNode
instance.
Optional
previous: null | DoublyLinkedListNode = nullThe previous node, or null
if the node has no previous connection.
Optional
next: null | DoublyLinkedListNode = nullThe next node, or null
if the node has no next connection.
The next node, or null
if the node has no next connection.
The previous node, or null
if the node has no previous connection.
Concrete implementation of a doubly linked list node.
Provides bidirectional node linking capabilities.
Example