@mathjax/src
    Preparing search index...

    Class AbstractMathList<N, T, D>Abstract

    The MathList abstract class (extends LinkedList)

    Type Parameters

    • N

      The HTMLElement node class

    • T

      The Text node class

    • D

      The Document class

    Hierarchy (View Summary)

    Implements

    Index

    Constructors

    • This.list is a special ListItem whose next property points to the head of the list and whose prev property points to the tail. This lets us relink the head and tail items in the same way as any other item in the list, without having to handle special cases.

      Type Parameters

      • N
      • T
      • D

      Parameters

      • ...args: MathItem<N, T, D>[]

        The data items that form the initial list

      Returns AbstractMathList<N, T, D>

    Properties

    list: ListItem<MathItem<N, T, D>>

    The linked list

    Methods