Options
All
  • Public
  • Public/Protected
  • All
Menu

Linked list node

Type parameters

  • T

    node data

Hierarchy

  • default

Index

Constructors

Properties

Constructors

  • new default<T>(data: T): default<T>

Properties

data: T

Node data

next: Nullable<default<T>> = null

A link to the next node

prev: Nullable<default<T>> = null

A link to the previous node