zibri
    Preparing search index...

    Generic doubly linked list with O(1) removal of arbitrary nodes and O(1) append / move-to-tail operations.

    Type Parameters

    • T
    Index

    Constructors

    Properties

    Accessors

    Methods

    Constructors

    Properties

    head: LinkedListNode<T> | undefined = undefined

    The first list element.

    tail: LinkedListNode<T> | undefined = undefined

    The last list element.

    Accessors

    Methods