5 misconceptions about std::move in C++
Welcome to the next pikoTutorial!
std::move moves an object
One of the most prevalent misconceptions is that std::move actually moves an object. In reality, std::move does not perform any movement - it casts its argument to an rvalue reference. This ...
pikotutorial.hashnode.dev3 min read