Class DoubleNode<T>

A node for doubly linked data structures.

Typeparam

T - The type of value stored in the node

Type Parameters

  • T

Constructors

Properties

Constructors

Properties

next: DoubleNode<T> = null

Reference to the next node in the sequence

prev: DoubleNode<T> = null

Reference to the previous node in the sequence

val: T

The value stored in this node