tmp/tmpsw_t0722/{from.md → to.md}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
**Table: Cpp17EqualityComparable requirements** <a id="cpp17.equalitycomparable">[cpp17.equalitycomparable]</a>
|
| 2 |
|
| 3 |
| Expression | Return type |
|
| 4 |
| ---------- | ----------- |
|
| 5 |
-
| `a == b` |
|
| 6 |
|
|
|
|
| 1 |
**Table: Cpp17EqualityComparable requirements** <a id="cpp17.equalitycomparable">[cpp17.equalitycomparable]</a>
|
| 2 |
|
| 3 |
| Expression | Return type |
|
| 4 |
| ---------- | ----------- |
|
| 5 |
+
| `a == b` | `decltype(a == b)` models `boolean-testable` | `==` is an equivalence relation, that is, it has the following properties: For all `a`, `a == a`.; If `a == b`, then `b == a`.; If `a == b` and `b == c`, then `a == c`. |
|
| 6 |
|