Please, could someone explain in plain English what is "Extending move semantics to *this"? I am referring to this proposal. All what am looking for is what is that & why do we need that. Note that I do understand what an rvalue reference is in general, upon which move semantics is built. I am not able to grasp what such an extension adds to rvalue references!
|
feedback
|
|
The ref-qualifier feature (indicating the type of
| ||||
|
feedback
|
|
For example, you can overload operators as free functions with rvalue references if you wish:
To achieve the same effect with a member function, you need the quoted proposal:
The double ampersand says "this member function can only be called on rvalues". Whether or not you must explicitly move from | |||
|
feedback
|