Please enable JavaScript.
Coggle requires JavaScript to display documents.
Operator Map (Unary (Identity (+x), Negation (-x), Logical negation (!x),…
Operator Map
Unary
Identity (+x)
Negation (-x)
Logical negation (!x)
Bitwise negation (~x)
Pre-increment (++x)
Explicitly Convert ((T)x)
Pre-decrement (--x)
Additive
Addition (x + y)
Subtraction (x - y)
Shift
Shift Left (x << y)
Shift Right (x >> y)
Equality
Equal (x == y)
Not Equal (x != y)
Assignment and Anonymous
Assignment ( = )
Compound assignment (x op= y) ex. +=
Anonymous function (lambda expression)
Operator Overloading
Logical
OR (x | y)
XOR (x ^ y)
AND (x & y)
Conditional
AND (x && y)
OR (x || y)
x ? y : z
Null coalescing (x ?? y)
Multiplicative
Multiplication (x * y)
Division (x / y)
Remainder (x % y)
Type
x as T
x is T