Generic Lambda in C++ 14 is a feature similar to templates. This was not present in…
Tag: universal reference
What is C++ reference collapsing, how it works?
With these c++ reference combinations, the compiler follows certain rules to collapse references to references and…
How std forward( ) converts to r-value in c++?
Just like, std::move( ), std::forward( ) also casts its argument (to R-value), however, unlike move( )…
std move () : How this template function works?
The std::move( ) is a function template which perform static casts. The std::move( ) unconditionally casts…