FreakingGenius - v0.1.0
    Preparing search index...

    Interface BinaryOpNode

    A binary operator node with a left and right sub-expression.

    interface BinaryOpNode {
        kind: "binaryOp";
        left: MathNode;
        operator: "+" | "-" | "^" | "/" | "*";
        right: MathNode;
    }
    Index

    Properties

    Properties

    kind: "binaryOp"
    left: MathNode
    operator: "+" | "-" | "^" | "/" | "*"
    right: MathNode