C++11 use-case for piecewise_construct of pair and tuple?
Not all types can be moved more efficiently than copied, and for some types it may make sense to even explicitly disable both copying and moving. Consider std::array<int, BIGNUM> as an an example of the former kind of a type. The point with the emplace functions and piecewise_construct is that such a class can be … Read more