Lecture 2 - Slide 19 : 29
Rvalue references

An rvalue reference is a reference to a temporary object (soon to disappear) from which we may be tempted to steal some constituents in order to avoid an expensive copy operation

rval-1.cc
Illustration of Rvalue references - in contrast to other kinds of references.
rval-1-compilable.cc
The compilable parts of the program from above.