¡@

Home 

c++ Programming Glossary: rval_ref

C++11 rvalues and move semantics confusion

http://stackoverflow.com/questions/4986673/c11-rvalues-and-move-semantics-confusion

std vector int tmp 1 2 3 4 5 return tmp std vector int rval_ref return_vector Second example std vector int return_vector void.. int tmp 1 2 3 4 5 return std move tmp std vector int rval_ref return_vector Third example std vector int return_vector void.. int tmp 1 2 3 4 5 return std move tmp std vector int rval_ref return_vector Great thanks c c 11 rvalue reference move semantics..