Skip to content

linkednode

Michael Rojas edited this page Jun 24, 2021 · 1 revision

dastal - v5.0.0 / LinkedNode

Interface: LinkedNode<T>

A linked node interface.

Each node links to its next neighbor.

Type parameters

Name
T

Table of contents

Properties

Properties

next

Optional next: LinkedNode<T>

A link to the node's neighbor.

Defined in

src/list/linkedNode.ts:10


value

value: T

The value of the node.

Defined in

src/list/linkedNode.ts:14

Clone this wiki locally