in https://en.cppreference.com/w/cpp/utility/move
std::vector v = {2, 3, 3}; v = std::move(v); // the value of v is unspecified
Wh