tmp/tmpn0coe1ij/{from.md → to.md}
RENAMED
|
@@ -1,13 +1,13 @@
|
|
| 1 |
-
#####
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
R operator()(ArgTypes... args) const;
|
| 5 |
```
|
| 6 |
|
| 7 |
*Returns:* *INVOKE*\<R\>(f,
|
| 8 |
-
std::forward\<ArgTypes\>(args)...)
|
| 9 |
-
target object
|
| 10 |
|
| 11 |
*Throws:* `bad_function_call` if `!*this`; otherwise, any exception
|
| 12 |
thrown by the wrapped callable object.
|
| 13 |
|
|
|
|
| 1 |
+
##### Invocation <a id="func.wrap.func.inv">[[func.wrap.func.inv]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
R operator()(ArgTypes... args) const;
|
| 5 |
```
|
| 6 |
|
| 7 |
*Returns:* *INVOKE*\<R\>(f,
|
| 8 |
+
std::forward\<ArgTypes\>(args)...) [[func.require]], where `f` is the
|
| 9 |
+
target object [[func.def]] of `*this`.
|
| 10 |
|
| 11 |
*Throws:* `bad_function_call` if `!*this`; otherwise, any exception
|
| 12 |
thrown by the wrapped callable object.
|
| 13 |
|