Options
All
  • Public
  • Public/Protected
  • All
Menu

Class DoublyLinkedListNode

Hierarchy

  • DoublyLinkedListNode

Constructors

Properties

Methods

Constructors

constructor

  • Parameters

    • value: any

      data object

    • Optional next: any

      Link to next data object in the list

    • Optional previous: any

      Link to previous data object in the list

    Returns DoublyLinkedListNode

Properties

next

property

Link to next data object in the list

previous

previous: null | DoublyLinkedListNode
property

Link to previous data object in the list

value

value: any
property

data object

Methods

toString

  • toString(callback?: function): string
  • Parameters

    • Optional callback: function
        • (node: any): string
        • Parameters

          • node: any

          Returns string

    Returns string