sesaparcours
    Preparing search index...

    Type Alias OperatorNodeMap

    type OperatorNodeMap = {
        add: "+";
        and: "and";
        bitAnd: "&";
        bitNot: "~";
        bitOr: "|";
        bitXor: "^|";
        divide: "/";
        dotDivide: "./";
        dotMultiply: ".*";
        dotPow: ".^";
        equal: "==";
        factorial: "!";
        larger: ">";
        largerEq: ">=";
        leftShift: "<<";
        mod: "mod";
        multiply: "*";
        not: "not";
        or: "or";
        pow: "^";
        rightArithShift: ">>";
        rightLogShift: ">>>";
        smaller: "<";
        smallerEq: "<=";
        subtract: "-";
        to: "to";
        unaryMinus: "-";
        unaryPlus: "+";
        unequal: "!=";
        xor: "xor";
    }
    Index

    Properties

    add: "+"
    and: "and"
    bitAnd: "&"
    bitNot: "~"
    bitOr: "|"
    bitXor: "^|"
    divide: "/"
    dotDivide: "./"
    dotMultiply: ".*"
    dotPow: ".^"
    equal: "=="
    factorial: "!"
    larger: ">"
    largerEq: ">="
    leftShift: "<<"
    mod: "mod"
    multiply: "*"
    not: "not"
    or: "or"
    pow: "^"
    rightArithShift: ">>"
    rightLogShift: ">>>"
    smaller: "<"
    smallerEq: "<="
    subtract: "-"
    to: "to"
    unaryMinus: "-"
    unaryPlus: "+"
    unequal: "!="
    xor: "xor"