Does moving leave the object in a usable state?
09:58 28 Oct 2011

Say I have two vectors and I move one unto the other, v1 = std::move(v2); will v2 still be in a usable state after this?

c++ c++11 move-semantics