This commit is contained in:
Morten Nobel-Joergensen
2017-09-07 13:16:21 +02:00
parent 424939420f
commit f2ea90ef0e

View File

@@ -198,8 +198,8 @@ delete[] p // Destroy and free array of objects at p
x * y // Multiply
x / y // Divide (integers round toward 0)
x \% y // Modulo (result has sign of x)
\\
x % y // Modulo (result has sign of x)
x + y // Add, or \&x[y]
x - y // Subtract, or number of elements from *x to *y
x << y // x shifted y bits to left (x * pow(2, y))