tmp/tmpzkapz_ou/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
##### Resumption <a id="coroutine.handle.noop.resumption">[[coroutine.handle.noop.resumption]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
constexpr void operator()() const noexcept;
|
| 5 |
+
constexpr void resume() const noexcept;
|
| 6 |
+
constexpr void destroy() const noexcept;
|
| 7 |
+
```
|
| 8 |
+
|
| 9 |
+
*Effects:* None.
|
| 10 |
+
|
| 11 |
+
*Remarks:* If `noop_coroutine_handle` is converted to
|
| 12 |
+
`coroutine_handle<>`, calls to `operator()`, `resume` and `destroy` on
|
| 13 |
+
that handle will also have no observable effects.
|
| 14 |
+
|