Skip to main content

Operators

Most operators are infix operators: they have two operands, a left-hand side (lhs) operand and a right-hand side operand (rhs).

An infix operator can either have whitespace before and after the operator or have no whitespace neither before nor after the operator.

Infix operators have a precedence that indicate how strongly they bind to their operand and a left or right associativity.

A few operators are prefix operators: they only have a right-hand side. Prefix operators are followed immediately by their operand: they cannot be separated by whitespace.

A postfix operator (!, Factorial) has only a left-hand side and follows it immediately: like a prefix operator, it cannot be separated from its operand by whitespace.

info

The whitespace rules are necessary to support unambiguous parsing of expressions spanning multiple lines without requiring a separator between expressions

The implementation's source of truth for operator spelling, precedence, and associativity is src/cortex/operators.ts. Both the parser and serializer read that table. The reference table below mirrors it.

Precedence

The operator at the root of the parse tree has the lowest precedence.

Precedence tiers are numbered in gaps of 10, loosest to tightest — a higher number binds tighter. Operators in the same tier have the same precedence (for example + and -, or * and /).

TierOperatorASCIIFancyKindAssociativity
10Assign=infixright
15MapsTo|->infixright
20Pipe|>infixleft
20Pipe~>infixleft
30KeyValuePair->infixleft
40Or||infixleft
50And&&infixleft
60Equal==infixn-ary chain
60Same===infixn-ary chain
60NotEqual!=infixn-ary chain
60Less<infixn-ary chain
60Greater>infixn-ary chain
60LessEqual<=infixn-ary chain
60GreaterEqual>=infixn-ary chain
60Elementininfixn-ary chain
60NotElement!ininfixn-ary chain
65Range..infixleft
70Add+infixleft
70Subtract-infixleft
80Multiply*×infixleft
80Divide/÷infixleft
80Mod%infixleft
90Negate-prefix
90Not!¬prefix
100Power^infixright
100Power**infixright
110Factorial!postfix

Postfix calls and indexing (f(x), xs[i]) bind tighter than every entry in this table — they are handled directly by the parser rather than through the operator table, since they are not spelled with an operator symbol.

The whitespace rule

An infix operator must have whitespace on both sides or on neither side. A prefix operator must have no whitespace before its operand. These rules let a multi-line program parse deterministically without a separator between every expression:

a + b // infix Add: ["Add", "a", "b"]
a+b // same: whitespace on neither side
a +b

Here + has whitespace before but not after: it is not treated as infix. The expression a ends there; +b is left over on the same line with no separator before it, which is a diagnostic (unexpected-symbol) rather than a silently-inferred sequence — see Statements and Sequencing. On its own line (after a linebreak or ;), +b is a valid new statement: unary + is the identity, so a\n+b parses as ["Block", "a", "b"].

a+ b

Here + has whitespace after but not before: an asymmetric case. The parser recovers as infix Add but reports an asymmetric-operator-whitespace diagnostic (with a fix-it), since this is more useful to the author than silently ending the statement.

Pipe: |> and ~>

|> and ~> are aliases for Pipe and sit at the loosest precedence tier, right below Assign — looser than arithmetic, relational, and boolean operators (Elixir-style):

a + b |> f // (a + b) |> f
a || b |> f // (a || b) |> f
x = a |> f // x = (a |> f)

Anonymous functions: |->

The mapsto operator constructs an anonymous function:

x |-> x^2
(x, y) |-> x + y

It is right-associative, so x |-> y |-> x + y constructs a function that returns another function. It binds tighter than assignment but more loosely than the other expression operators, so f = x |-> x + 1 assigns the complete function to f. Typed parameters can be written in parentheses:

(x: integer) |-> x + 1

The MapsTo name in the table is internal to parsing. The resulting MathJSON uses Function, not a MapsTo head.

Ranges: ..

The range operator is a compact spelling of a two-argument Range:

1..5 // Range(1, 5)
1..n - 1 // Range(1, n - 1)
k in 1..5 // k in Range(1, 5)

It binds tighter than relational operators and more loosely than addition and subtraction. The Unicode two-dot leader is an input alias. Serialization uses Range(a, b), and a stepped range continues to use the three-argument call Range(a, b, step).

Unary prefix: - and !

- (Negate) and ! (Not) are prefix operators. They must abut their operand with no whitespace:

-x // ["Negate", "x"]
!a // ["Not", "a"]
!!a // ["Not", ["Not", "a"]] — `!!` lexes as one token that peels into two Not's

Negate/Not bind looser than Power, so a leading minus does not reach inside an exponent:

-x^2 // -(x^2), i.e. ["Negate", ["Power", "x", 2]]

A unary minus applied directly to a number literal folds into the literal rather than producing a Negate node:

-2 // the literal -2, not ["Negate", 2]

Unary + is accepted the same way but is the identity: +(2 + 1) is ["Add", 2, 1], not wrapped in anything.

Power: ^ and **

Power is the tightest operator in the table and is right-associative. ** is an accepted alias for ^ (same table row, same precedence):

x^2 // ["Power", "x", 2]
x**2 // ["Power", "x", 2]
2^3^2 // ["Power", 2, ["Power", 3, 2]] — right-associative

Because Power binds tighter than Multiply/Divide:

x^1/2 // (x^1)/2, i.e. ["Divide", ["Power", "x", 1], 2]

Modulo: %

% is Mod, an infix operator at the multiplicative tier (the same precedence as * and /), left-associative:

a % b // ["Mod", "a", "b"]
a + b % c // a + (b % c): ["Add", "a", ["Mod", "b", "c"]]
a % b % c // ["Mod", ["Mod", "a", "b"], "c"] — left-associative

Factorial: postfix !

! in postfix position is Factorial. Position disambiguates it from the prefix ! (Not): a ! that abuts the preceding operand is a factorial (x!), while a ! at the start of an operand is Not (!x).

5! // ["Factorial", 5]
n! // ["Factorial", "n"]
!x // ["Not", "x"] — prefix, unchanged

Factorial binds tighter than Power (tier 110 vs. 100), so it reaches inside a Power operand, and a leading minus stays outside it:

2^3! // 2^(3!): ["Power", 2, ["Factorial", 3]]
3! ^ 2 // (3!)^2: ["Power", ["Factorial", 3], 2]
-3! // -(3!): ["Negate", ["Factorial", 3]]

It also applies after a parenthesized expression, a call, or an index:

(a + b)! // ["Factorial", ["Add", "a", "b"]]
f(x)! // ["Factorial", ["f", "x"]]

Like a prefix operator, a postfix ! must abut its operand: x! is a factorial, but x !y is not — the space before ! ends the x expression, leaving !y (a prefix Not) with no separator, which is a diagnostic. Because the lexer maximal-munches a run of operator characters into one token, a ! directly followed by another operator character is not seen as a lone ! (write 3! ^ 2, not 3!^2; x! + 1, not x!+1). The != (NotEqual) and !in (NotElement) operators are unaffected: the lexer keeps != whole and !in is recognized as a compound before the postfix !.

Invisible multiplication

A number literal immediately followed — with no whitespace — by a symbol or an opening parenthesis is read as an implicit Multiply:

2x // ["Multiply", 2, "x"]
3x^3 // 3·(x^3): ["Multiply", 3, ["Power", "x", 3]]
2i // ["Multiply", 2, "i"] — `i` is the engine's ImaginaryUnit symbol
2(2 + 1) // ["Multiply", 2, ["Add", 2, 1]]

Note that a symbol immediately followed by ( is a function call, not an invisible multiplication: x(2+1) is ["x", ["Add", 2, 1]], and a parenthesized (or otherwise compound) callee produces Apply: (a+b)(2+1) is ["Apply", ["Add", "a", "b"], ["Add", 2, 1]]. See Calls and Indexing.

Whitespace between the number and the symbol suppresses invisible multiplication and is instead a statement boundary: 2 1/2 is a diagnostic (unexpected-symbol), not 2 * (1/2).

Chained relational operators

Relational operators (precedence tier 60) are n-ary chainable: a run of the same relational operator flattens into one node, matching how mathematicians write inequalities and how the engine already represents them:

a < b < c // ["Less", "a", "b", "c"]

A mix of relational operators initially lowers as a left-associated tree:

a < b <= c // ["LessEqual", ["Less", "a", "b"], "c"]

When the tree is boxed by the Compute Engine, it is canonicalized to the pairwise conjunction a < b && b <= c. Consequently, evaluating a mixed chain has the usual mathematical chained-comparison semantics.

Logic operators

  • && (And), || (Or), ! (Not), with the fancy Unicode forms , , ¬.
  • && binds tighter than ||, matching the tiers above.

The word forms and, or, and not, and the implication/equivalence infix operators => and <=>, are reserved but not implemented. The token => is used contextually to separate a match pattern from its result.

Assignment vs. equality

= is Assignassignment, not equality. Use == (Equal) to compare values and === (Same) for structural identity.