1. Overview Function adaptors are a feature of the C++ standard library that allow for the modification of function objects, creating new functions that, for example, take fewer arguments or […]
Category: C++
decltype(auto) – Alternate type deduction on declaration
1. Overview In this article, we will be looking at new in c++14 type-specifier decltype(auto). We will learn how it enhances bare auto usage, and when its use really makes […]
New function return type deduction in C++14
1. Overview In this article, we will be talking about C++14 new ways to specify the return type. We will also go deeper into the problem by explaining how function […]