From Jason Turner

[coroutine.handle.noop.resumption]

Diff to HTML by rtfpessoa

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