tmp/tmp1bkplqw7/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#### `memory_resource` equality <a id="mem.res.eq">[[mem.res.eq]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
bool operator==(const memory_resource& a, const memory_resource& b) noexcept;
|
| 5 |
+
```
|
| 6 |
+
|
| 7 |
+
*Returns:* `&a == &b || a.is_equal(b)`.
|
| 8 |
+
|
| 9 |
+
``` cpp
|
| 10 |
+
bool operator!=(const memory_resource& a, const memory_resource& b) noexcept;
|
| 11 |
+
```
|
| 12 |
+
|
| 13 |
+
*Returns:* `!(a == b)`.
|
| 14 |
+
|