I don't understand very well the std::move function
template <class T>
typename remove_reference<T>::type&&
move(T&& a)
{
return a;
}
why remove_reference ?
could someone give me a simple explanation ?
thanks
|
I don't understand very well the
why thanks
| ||||
|
feedback
|
|
Think about what happens if | |||||||||||
feedback
|
|
Because rvalue reference to lvalue reference would decay to lvalue reference. And returing lvalue reference would invoke different semantics, then those you would expect from Edit: Huh, why the downvote? Check out this code:
Further reading: http://www.justsoftwaresolutions.co.uk/cplusplus/rvalue_references_and_perfect_forwarding.html | ||||
|
feedback
|