roll-parser - v3.0.0-beta.0
    Preparing search index...

    Type Alias FunctionCallNode

    FunctionCallNode: NodeSpan & {
        args: ASTNode[];
        name: string;
        type: "FunctionCall";
    }

    Math function call node (floor(expr), max(a, b, ...), etc.).

    Supports the fixed-arity functions floor, ceil, round, abs, and the variadic functions max, min (minimum 2 args). Arity is validated at parse time against a static table; by the time the evaluator sees a FunctionCallNode, args.length is guaranteed to match the function.