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!
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
The ref-qualifier feature (indicating the type of
|
||||
|
|
|
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 |
|||
|
|