aaaa
This commit is contained in:
parent
714397a108
commit
010541f90c
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ All `matrix` operators in order of high to low precedence from top down
|
|||
| `Add`, `Subtract` | `+`, `-` | left to right | `1 + 2` |
|
||||
| Bitwise shift | `<<`, `>>` | left to right | `13 << 2` |
|
||||
| Bitwise `And` | `&` | left to right | `a & 0xC3` |
|
||||
| Bitwise `Xor` | `^` | left to right | `3 ^ 4`` |
|
||||
| Bitwise `Xor` | `^` | left to right | `3 ^ 4` |
|
||||
| Bitwise `Or` | `\|` | left to right | `b \| 0xC3` |
|
||||
| Comparison | `==`, `!=`, `<`, `>`, `<=`, `>=` | left to right | `a == b`, `c != d` |
|
||||
| `And` | `&&` | left to right | `res && other` |
|
||||
|
|
Loading…
Reference in a new issue