Daily Shaarli

All links of one day in a single page.

November 10, 2014

Perfect forwarding and universal references in C++ - Eli Bendersky's website

One of the new features in C++11 aimed at increased code efficiency is the emplace family of methods in containers. std::vector, for example, has an emplace_back method to parallel push_back, and emplace to parallel insert.