I am new to c++ and I am reading Effective Modern c++ and I don't understand this part
It’s especially important to remember this when dealing with a parameter of rvalue reference type, because the parameter itself is an lvalue:
Widget(Widget&& rhs); // rhs is an lvalue, though it has
… // an rvalue reference type