Came across a proposal called “rvalue reference for *this” in clang’s C++11 status page. I’ve read quite a bit about rvalue references and understood them, but I don’t think...
  • May 21, 2022
  • 0 Comments
I’m a bit confused regarding the difference between push_back and emplace_back. void emplace_back(Type&& _Val); void push_back(const Type& _Val); void push_back(Type&& _Val); As there is a push_back overload taking a...
  • April 16, 2022
  • 0 Comments
I just finished listening to the Software Engineering radio podcast interview with Scott Meyers regarding C++0x. Most of the new features made sense to me, and I am actually...
  • April 10, 2022
  • 0 Comments