Creates a new DoublyLinkedListNode instance.
Optionalprevious: null | DoublyLinkedListNode = nullThe previous node, or null if the node has no previous connection.
Optionalnext: 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