tmp/tmp9f9fcezi/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#### Function `noop_coroutine` <a id="coroutine.noop.coroutine">[[coroutine.noop.coroutine]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
noop_coroutine_handle noop_coroutine() noexcept;
|
| 5 |
+
```
|
| 6 |
+
|
| 7 |
+
*Returns:* A handle to a coroutine that has no observable effects when
|
| 8 |
+
resumed or destroyed.
|
| 9 |
+
|
| 10 |
+
*Remarks:* A handle returned from `noop_coroutine` may or may not
|
| 11 |
+
compare equal to a handle returned from another invocation of
|
| 12 |
+
`noop_coroutine`.
|
| 13 |
+
|