@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
    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

    • get isEnd(): boolean

      Returns boolean

      True if the list item is the last one in the list