tmp/tmp98qlvs9g/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
**Table: Enum class `operators`** <a id="meta.reflection.operators">[meta.reflection.operators]</a>
|
| 2 |
+
|
| 3 |
+
| Constant | Corresponding *operator-function-id* | Operator symbol name |
|
| 4 |
+
| --------------------------- | ------------------------------------ | -------------------- |
|
| 5 |
+
| `op_new` | `operator new` | `new` |
|
| 6 |
+
| `op_delete` | `operator delete` | `delete` |
|
| 7 |
+
| `op_array_new` | `operator new[]` | `new[]` |
|
| 8 |
+
| `op_array_delete` | `operator delete[]` | `delete[]` |
|
| 9 |
+
| `op_co_await` | `operator co_await` | `co_await` |
|
| 10 |
+
| `op_parentheses` | `operator()` | `()` |
|
| 11 |
+
| `op_square_brackets` | `operator[]` | `[]` |
|
| 12 |
+
| `op_arrow` | `operator->` | `->` |
|
| 13 |
+
| `op_arrow_star` | `operator->*` | `->*` |
|
| 14 |
+
| `op_tilde` | `operator~` | `~` |
|
| 15 |
+
| `op_exclamation` | `operator!` | `!` |
|
| 16 |
+
| `op_plus` | `operator+` | `+` |
|
| 17 |
+
| `op_minus` | `operator-` | `-` |
|
| 18 |
+
| `op_star` | `operator*` | `*` |
|
| 19 |
+
| `op_slash` | `operator/` | `/` |
|
| 20 |
+
| `op_percent` | `operator%` | `%` |
|
| 21 |
+
| `op_caret` | `operator^` | `^` |
|
| 22 |
+
| `op_ampersand` | `operator&` | `&` |
|
| 23 |
+
| `op_equals` | `operator=` | `=` |
|
| 24 |
+
| `op_pipe` | `operator|` | `|` |
|
| 25 |
+
| `op_plus_equals` | `operator+=` | `+=` |
|
| 26 |
+
| `op_minus_equals` | `operator-=` | `-=` |
|
| 27 |
+
| `op_star_equals` | `operator*=` | `*=` |
|
| 28 |
+
| `op_slash_equals` | `operator/=` | `/=` |
|
| 29 |
+
| `op_percent_equals` | `operator%=` | `%=` |
|
| 30 |
+
| `op_caret_equals` | `operator^=` | `^=` |
|
| 31 |
+
| `op_ampersand_equals` | `operator&=` | `&=` |
|
| 32 |
+
| `op_pipe_equals` | `operator|=` | `|=` |
|
| 33 |
+
| `op_equals_equals` | `operator==` | `==` |
|
| 34 |
+
| `op_exclamation_equals` | `operator!=` | `!=` |
|
| 35 |
+
| `op_less` | `operator<` | `<` |
|
| 36 |
+
| `op_greater` | `operator>` | `>` |
|
| 37 |
+
| `op_less_equals` | `operator<=` | `<=` |
|
| 38 |
+
| `op_greater_equals` | `operator>=` | `>=` |
|
| 39 |
+
| `op_spaceship` | `operator<=>` | `<=>` |
|
| 40 |
+
| `op_ampersand_ampersand` | `operator&&` | `&&` |
|
| 41 |
+
| `op_pipe_pipe` | `operator||` | `||` |
|
| 42 |
+
| `op_less_less` | `operator<<` | `<<` |
|
| 43 |
+
| `op_greater_greater` | `operator>>` | `>>` |
|
| 44 |
+
| `op_less_less_equals` | `operator<<=` | `<<=` |
|
| 45 |
+
| `op_greater_greater_equals` | `operator>>=` | `>>=` |
|
| 46 |
+
| `op_plus_plus` | `operator++` | `++` |
|
| 47 |
+
| `op_minus_minus` | `operator--` | `--` |
|
| 48 |
+
| `op_comma` | `operator,` | `,` |
|
| 49 |
+
|