A C++11 language construct that allows easier specification of a function return type through 'decltype' and the use of function parameter and class member names.
C++11 supports a new function syntax: auto func_name(int x, int y) -> int; Currently this function would …
c++ c++11 auto trailing-return-type