sesaparcours
    Preparing search index...

    Type Alias FunctionEntry

    FunctionEntry: BaseEntry & Trigger & {
        kind: "function";
        parse?: Expression | FunctionParseHandler;
    }

    A function is an identifier followed by:

    • some postfix operators such as \prime
    • an optional list of arguments in an enclosure (parentheses)

    For more complex situations, for example implicit arguments or inverse functions postfix (i.e. ^{-1}), use a custom parse handler with a entry of kind expression.