FreakingGenius - v0.1.0
    Preparing search index...

    Interface MathExpression

    A fully parsed mathematical expression.

    interface MathExpression {
        latex: string;
        root: MathNode;
        tokens: RecognitionResult[];
    }
    Index

    Properties

    Properties

    latex: string

    LaTeX string representation of the expression.

    root: MathNode

    The root node of the expression tree.

    The original token sequence that was parsed.