Consider the following function:
template<class T1, class T2, class T3 = /* SOMETHING */>
T3 f(const T1& x, const T2& y);
I want T3 to be equal to the return type of T1+T2. How to do that with C++11 ?
Note: I don't want the result of std::common_type<T1, T2>::type, I want real type of T1+T2, considering that the operator+ can be a non-member function or can be a member function of T1.
T3in the function at all, or is it ok to remove the extra parameter and just make it the return type directly? – chris Dec 30 '12 at 4:30T3again, you can usedecltype(std::declval<T1>() + std::declval<T2>()). – chris Dec 30 '12 at 5:24T3is required in the body off. – Frank S. Thomas Dec 30 '12 at 12:11