From Jason Turner

[func.invoke]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmp1w95qo1t/{from.md → to.md} +11 -0
tmp/tmp1w95qo1t/{from.md → to.md} RENAMED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ### Function template `invoke` <a id="func.invoke">[[func.invoke]]</a>
2
+
3
+ ``` cpp
4
+ template <class F, class... Args>
5
+ invoke_result_t<F, Args...> invoke(F&& f, Args&&... args)
6
+ noexcept(is_nothrow_invocable_v<F, Args...>);
7
+ ```
8
+
9
+ *Returns:* *INVOKE*(std::forward\<F\>(f),
10
+ std::forward\<Args\>(args)...) ([[func.require]]).
11
+