Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • LinkedListNode

Index

Constructors

Properties

Methods

Constructors

constructor

Properties

next

next: null | LinkedListNode
property

Optional next data item for the node

value

value: any
property

Data item for the node

Methods

toString

  • toString(callback?: (value: any) => string): string
  • Convert the node to string

    Parameters

    • Optional callback: (value: any) => string

      A custom function to convert the data item into string representation

        • (value: any): string
        • Parameters

          • value: any

          Returns string

    Returns string

    string