@mathjax/src
    Preparing search index...

    Class ListItem<DataClass>

    The ListItem interface (for a specific type of data item)

    These are the items in the doubly-linked list.

    Type Parameters

    • DataClass

      The type of data stored in the list

    Index

    Constructors

    Properties

    Constructors

    Properties

    data: symbol | DataClass

    The data for the list item

    next: ListItem<DataClass> = null

    Pointers to the next item in the list

    prev: ListItem<DataClass> = null

    Pointers to the previous item in the list