tmp/tmpfesm34hx/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#### Comparison operators <a id="coroutine.handle.compare">[[coroutine.handle.compare]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
constexpr bool operator==(coroutine_handle<> x, coroutine_handle<> y) noexcept;
|
| 5 |
+
```
|
| 6 |
+
|
| 7 |
+
*Returns:* `x.address() == y.address()`.
|
| 8 |
+
|
| 9 |
+
``` cpp
|
| 10 |
+
constexpr strong_ordering operator<=>(coroutine_handle<> x, coroutine_handle<> y) noexcept;
|
| 11 |
+
```
|
| 12 |
+
|
| 13 |
+
*Returns:* `compare_three_way()(x.address(), y.address())`.
|
| 14 |
+
|