Skip to content

Latest commit

 

History

History
3 lines (2 loc) · 308 Bytes

13.45.md

File metadata and controls

3 lines (2 loc) · 308 Bytes

An rvalue reference is a reference that must be bounded to an rvalue. It refers to an object's value. Rvalues are ephemeral.

An lvalue reference (regular reference) is a reference that must be bounded to an lvalue or const rvalue. It refers to an object's identity. Lvalues are pesistent.