Search code examples
"Transfer" to function in C++: pass by value or rvalue reference?...

c++rvalue-reference

Read More
Why can I bind base class shared_ptr rvalue reference to derived class shared_ptr?...

c++shared-ptrrvalue-reference

Read More
Passing an Lvalue to a parameter of RValue...

c++templatesrvalue-reference

Read More
r-value reference as a class member...

c++rvalue-reference

Read More
Providing a template type of the same type as argument causes an error for rvalue reference function...

c++templatesrvalue-referencervaluelvalue

Read More
move constructor and std::move confusion...

c++c++11movervalue-reference

Read More
Do rvalue references to const have any use?...

c++c++11constantsrvalue-reference

Read More
Correct usage of rvalue references as parameters...

c++c++11rvalue-reference

Read More
How does std::map resolve insert() overload between const lvalue reference and rvalue reference...

c++templatesstdstdmaprvalue-reference

Read More
Named r-value reference binding vs assignment...

c++rvalue-reference

Read More
How to move std::ostringstream's underlying string object?...

c++performancec++11move-semanticsrvalue-reference

Read More
Does std::move called on a prvalue deconstruct the object?...

c++move-semanticsrvalue-referencervaluestdmove

Read More
Is the behaviour of std::get on rvalue-reference tuples dangerous?...

c++c++11c++14rvalue-referencestdtuple

Read More
rvalue Reference not matching...

c++pass-by-referenceassertrvalue-reference

Read More
Pass ownership of an object into method of the same object?...

c++c++14unique-ptrrvalue-referenceownership-semantics

Read More
Why does referencing an xvalue not extend the lifetime of the object it refers to?...

c++rvalue-referencexvalue

Read More
Different constructor calls depending on compiler...

c++visual-c++rvalue-reference

Read More
Providing correct move semantics...

c++c++11rvalue-referencemove-semantics

Read More
Move semantics and overload...

c++overloadingmove-semanticsrvalue-reference

Read More
Why can an rvalue not bind to a non-const lvalue reference, other than the fact that writing to a te...

c++c++11rvalue-referencervaluelvalue

Read More
Why do references to moved values not dangle after the lvalue that the object was moved into goes ou...

c++rvalue-reference

Read More
Why do some people use swap for move assignments?...

c++c++11rvalue-referencemove-semanticscopy-and-swap

Read More
Passing vector with std::move function signature...

c++move-semanticsrvalue-reference

Read More
Timing a class function in C++...

c++templatesprofilingrvalue-reference

Read More
how to understand void (*&&)() func...

c++rvalue-referencervalue

Read More
Why r-value reference to pointer to const initialized with pointer to non-const doesn't create a...

c++pointersreferencervalue-referencetemporary-objects

Read More
difference between using std::move and adding 0 to the number?...

c++move-semanticsrvalue-reference

Read More
reassignment/move of std::future waits for existing future to complete...

c++multithreadingfuturervalue-reference

Read More
Is it correct to say that xvalues have identity and are movable?...

c++c++11rvalue-reference

Read More
Perfect forwarding for void and non-void returning functions...

c++c++11overloadingrvalue-reference

Read More
BackNext