mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-06 10:56:41 +00:00
Fix table formatting
This commit is contained in:
parent
b2abff42c4
commit
1c4f7c0185
1 changed files with 19 additions and 19 deletions
|
@ -707,7 +707,7 @@ Both of these are designed primarily for code generation scenarios, although the
|
|||
### Unary Operators
|
||||
|
||||
| Operator | Operation |
|
||||
| --------- | --------------- |
|
||||
| --------- | ---------------- |
|
||||
| `+`x | identity |
|
||||
| `-`x | negation |
|
||||
| `!`x | logic negation |
|
||||
|
@ -745,20 +745,20 @@ Both of these are designed primarily for code generation scenarios, although the
|
|||
### Logical Operators
|
||||
|
||||
| Operator | Operation | Name |
|
||||
| -------- | ----------------------------------------------------- | ---------------- | ----------------------------------- |
|
||||
| `~`x | bitwise NOT |
|
||||
| x `&` y | bitwise AND |
|
||||
| x `^` y | bitwise XOR |
|
||||
| x ` | ` y | bitwise OR |
|
||||
| x `&&` y | evaluate `y` only if `x` is `true` |
|
||||
| x ` | | ` y | evaluate `y` only if `x` is `false` |
|
||||
| -------- | ----------------------------------------------------- | ---------------- |
|
||||
| `~`x | bitwise NOT | |
|
||||
| x `&` y | bitwise AND | |
|
||||
| x `^` y | bitwise XOR | |
|
||||
| x `|` y | bitwise OR | |
|
||||
| x `&&` y | evaluate `y` only if `x` is `true` | |
|
||||
| x `||` y | evaluate `y` only if `x` is `false` | |
|
||||
| x `??` y | evaluates to `y` only if `x` is `null`, `x` otherwise | Null coalescing |
|
||||
| x`?.`y | stop if `x == null`, evaluate `x.y` otherwise | Null conditional |
|
||||
|
||||
### Assignment
|
||||
|
||||
| Operator | Operation |
|
||||
| --------- | ---------------------- | ----- | --- |
|
||||
| --------- | ---------------------- |
|
||||
| x `+=` y | x = x + y |
|
||||
| x `-=` y | x = x - y |
|
||||
| x `*=` y | x = x \* y |
|
||||
|
|
Loading…
Add table
Reference in a new issue