– Unary minus
In this section:
Precedence
3
Description
The unary minus operator performs arithmetic negation on its operand.
The operand is interpreted as a 32-bit signed integer, and the result of the operator is the two’s complement negation of that integer.
Example
-3 –> -3 3*-2 –> -6 4‑‑5 –> 9