Automatic Type Deduction: decltype
Let's take a look at what decltype does.
We'll cover the following...
decltype vs auto
The decltype keyword was also introduced in C++11, though its functionality differs from auto. decltype is used to determine the type of an expression or entity.
Here is the correct format: ...
Ask