Skip to content

Latest commit

 

History

History
57 lines (31 loc) · 1.16 KB

File metadata and controls

57 lines (31 loc) · 1.16 KB

dastal - v5.0.0 / DoublyLinkedNode

Interface: DoublyLinkedNode<T>

A doubly-linked node version of the LinkedNode interface.

Each node links to its neighbors on the left (prev) and right (next) of it.

Type parameters

Name
T

Table of contents

Properties

Properties

next

Optional next: DoublyLinkedNode<T>

A link to the node's next (right) neighbor

Defined in

src/list/doublyLinkedNode.ts:10


prev

Optional prev: DoublyLinkedNode<T>

A link to the node's previous (left) neighbor

Defined in

src/list/doublyLinkedNode.ts:14


value

value: T

The value of the node

Defined in

src/list/doublyLinkedNode.ts:18