tmp/tmpv0v8zsl_/{from.md → to.md}
RENAMED
|
@@ -1,11 +1,11 @@
|
|
| 1 |
#### Invocation <a id="refwrap.invoke">[[refwrap.invoke]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
template<class... ArgTypes>
|
| 5 |
constexpr invoke_result_t<T&, ArgTypes...>
|
| 6 |
-
operator()(ArgTypes&&... args) const;
|
| 7 |
```
|
| 8 |
|
| 9 |
*Mandates:* `T` is a complete type.
|
| 10 |
|
| 11 |
*Returns:* *INVOKE*(get(),
|
|
|
|
| 1 |
#### Invocation <a id="refwrap.invoke">[[refwrap.invoke]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
template<class... ArgTypes>
|
| 5 |
constexpr invoke_result_t<T&, ArgTypes...>
|
| 6 |
+
operator()(ArgTypes&&... args) const noexcept(is_nothrow_invocable_v<T&, ArgTypes...>);
|
| 7 |
```
|
| 8 |
|
| 9 |
*Mandates:* `T` is a complete type.
|
| 10 |
|
| 11 |
*Returns:* *INVOKE*(get(),
|