We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89abc99 commit f70fe44Copy full SHA for f70fe44
source/utilities.tex
@@ -10188,7 +10188,8 @@
10188
10189
// \ref{refwrap.invoke}, invocation
10190
template<class... ArgTypes>
10191
- constexpr invoke_result_t<T&, ArgTypes...> operator()(ArgTypes&&...) const;
+ constexpr invoke_result_t<T&, ArgTypes...> operator()(ArgTypes&&...) const
10192
+ noexcept(is_nothrow_invocable_v<T&, ArgTypes...>);
10193
};
10194
10195
template<class T>
@@ -10297,7 +10298,7 @@
10297
10298
\begin{itemdecl}
10299
10300
constexpr invoke_result_t<T&, ArgTypes...>
- operator()(ArgTypes&&... args) const;
10301
+ operator()(ArgTypes&&... args) const noexcept(is_nothrow_invocable_v<T&, ArgTypes...>);
10302
\end{itemdecl}
10303
10304
\begin{itemdescr}
0 commit comments