C++ Language/Indirection/RvalueReferences
Appearance
Traditional C++ considered the datatype int&
to be a "reference to int
".
Modern C++ refines that, so int&
is now more precisely a "lvalue-reference to int
".
That is distinguished from int&&
, which is a "rvalue-reference to int
".