From Jason Turner

[coroutine.handle.compare]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpfesm34hx/{from.md → to.md} +14 -0
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
+