On cppreference, it is written that the correct way of using std::result_of
is:
template<class F, class... Args>
std::result_of_t<F&&(Args&&...)>
// instead of std::result_of_t<F(Args...)>, which is wrong
my_invoke(F&& f, Args&&... args) {
/* implementation */
}
I was wondering how std::invoke_result_t
should be used:
invoke_result_t
:
template<class F, class... Args>
std::invoke_result_t<F&&, Args&&...> my_invoke(F&& f, Args&&... args);
Or:
template<class F, class... Args>
std::invoke_result_t<F, Args...> my_invoke(F&& f, Args&&... args);
invoke_result
is defined in terms ofdeclval
:and
declval
is specified as:So there's no difference between
std::invoke_result_t<F&&, Args&&...>
andstd::invoke_result_t<F, Args...>
. Well, the latter is 4 characters shorter, but they mean exactly the same thing (since neitherF
norArgs...
could bevoid
).