Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
1answer
1k views

Difference between std::result_of and decltype

I have some trouble understanding the need for std::result_of in C++0x. If I understood correctly, result_of is used to obtain the resulting type of invoking a function object with certain types of ...
4
votes
1answer
1k views

c++ deduction of “non type pointer to function” class template parameters

Consider a template class like: template<typename ReturnType, ReturnType Fn()> class Proxy { void run() { ReturnType ret = Fn(); // ... do something ... } }; // and a ...
0
votes
1answer
36 views

Get return value for template lambda parameter, how to simplify code?

This is my trick: template<typename F, typename TArg> auto get_return_value(F * f = NULL, TArg * arg = NULL) -> decltype((*f)(*arg)); Example of using: template<typename F, ...
0
votes
1answer
105 views

How do I determine the return type of a given array type's subscript operator with boost?

What type signature would I need to use if I'd like to determine the type returned by an array (T)'s subscript operator using boost? Note that the arrays for which I would be using this do not contain ...