Amazon Vinyl
    Preparing search index...

    Interface LinkedNode<T>

    A doubly-linked node.

    If a node is to move from one list to another, it must be removed first.

    interface LinkedNode<T> {
        next: LinkedNode<T> | null;
        previous: LinkedNode<T> | null;
        removed: boolean;
        value: T;
    }

    Type Parameters

    • T
    Index
    next: LinkedNode<T> | null
    previous: LinkedNode<T> | null
    removed: boolean
    value: T