Daily bit(e) of C++ | emplace, emplace_back, emplace_front
Daily bit(e) of C++ #333, The C++11 emplace methods on containers that can construct elements in place.
In C++11, all containers received emplace variants of their typical insert/push methods.
The emplace variants can construct the element in place, saving a move or copy.