
please wait
decltype(auto) |
auto |
|
|
auto |
auto& |
If the return type does not use decltype(auto), the deduction follows the rules of template argument deduction. ... If the return type is decltype(auto), the return type is as what would be obtained if the expression used in the return statement were wrapped in decltype. http://en.cppreference.com/w/cpp/language/function |
|
|