dastal - v5.0.0 / DoublyLinkedNode
A doubly-linked node version of the LinkedNode interface.
Each node links to its neighbors on the left (prev) and right (next) of it.
| Name |
|---|
T |
• Optional next: DoublyLinkedNode<T>
A link to the node's next (right) neighbor
src/list/doublyLinkedNode.ts:10
• Optional prev: DoublyLinkedNode<T>
A link to the node's previous (left) neighbor
src/list/doublyLinkedNode.ts:14
• value: T
The value of the node