tmp/tmp74bv4r98/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#### Conversion <a id="coroutine.handle.conv">[[coroutine.handle.conv]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
constexpr operator coroutine_handle<>() const noexcept;
|
| 5 |
+
```
|
| 6 |
+
|
| 7 |
+
*Effects:* Equivalent to:
|
| 8 |
+
`return coroutine_handle<>::from_address(address());`
|
| 9 |
+
|