tmp/tmpat_6lvq2/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
### `execution::get_await_completion_adaptor` <a id="exec.get.await.adapt">[[exec.get.await.adapt]]</a>
|
| 2 |
+
|
| 3 |
+
`get_await_completion_adaptor` asks a queryable object for its
|
| 4 |
+
associated awaitable completion adaptor.
|
| 5 |
+
|
| 6 |
+
The name `get_await_completion_adaptor` denotes a query object. For a
|
| 7 |
+
subexpression `env`,
|
| 8 |
+
|
| 9 |
+
``` cpp
|
| 10 |
+
get_await_completion_adaptor(env)
|
| 11 |
+
```
|
| 12 |
+
|
| 13 |
+
is expression-equivalent to
|
| 14 |
+
|
| 15 |
+
``` cpp
|
| 16 |
+
MANDATE-NOTHROW(AS-CONST(env).query(get_await_completion_adaptor))
|
| 17 |
+
```
|
| 18 |
+
|
| 19 |
+
`forwarding_query(execution::get_await_completion_adaptor)`
|
| 20 |
+
|
| 21 |
+
is a core constant expression and has value `true`.
|
| 22 |
+
|