Описание тега move-constructor

In C++11 a move constructor is a special member function similar to a copy constructor, but taking an rvalue-reference parameter.

For more information see Rvalue references and move constructors.

Related tags are move-semantics and rvalue-reference.