Search code examples
Why does C++11 have implicit moves for value parameters, but not for rvalue parameters?...

c++c++11move-semanticsrvalue-referencec++20

Read More
Can rvalue references be passed on as const references?...

c++move-semanticsrvalue-reference

Read More
Where is the rvalue reference in this code?...

c++rvalue-referencervalue

Read More
Understanding of the implementation of std::forward since C++11...

c++movervalue-referenceperfect-forwardingforwarding-reference

Read More
Custom type conversion operator doesn't work when invoked on a forwarding reference (works when ...

c++c++17constexprrvalue-referencepass-by-rvalue-reference

Read More
Why copy constructor is called instead of move constructor in my code?...

c++c++11rvalue-reference

Read More
Why can I move an object with deleted move constructor and assignment operator?...

c++c++17movemove-semanticsrvalue-reference

Read More
std::move Not Working on RValue Reference Function...

c++c++11vectorstdrvalue-reference

Read More
What is going on: C++ std::move on std::shared_ptr increases use_count?...

c++macosshared-ptrrvalue-reference

Read More
Does the C++ standard guarantee that a failed insertion into an associative container will not modif...

c++stllanguage-lawyerrvalue-referencepass-by-rvalue-reference

Read More
C++: Template Function taking rvalue reference overloads non-template function...

c++rvalue-referencefunction-templates

Read More
Why did not the temporary 'Test' did not moved, but only constructed?...

c++classrvalue-reference

Read More
SFINAE with std::is_rvalue_reference for variadic template argument list fails...

sfinaervalue-referencevariadic

Read More
static_cast to r-value references and std::move change their argument in an initialization...

c++rvalue-referencestatic-cast

Read More
Swig behavior for methods that accept rvalue reference as a parameter...

javac++swigmove-semanticsrvalue-reference

Read More
If I accept a parameter via universal reference, is exactly one of is_rvalue_reference and is_lvalue...

c++c++17rvalue-referencervaluelvalue

Read More
Does C++11's && (R-value reference) operator obsolete the 'proxy-object' design-...

design-patternsc++11rvalue-referenceproxy-classes

Read More
Type deduction for template references...

c++c++11rvalue-referencetype-deduction

Read More
An rvalue reference binds to an lvalue...

c++c++11rvalue-reference

Read More
How to keep object passed by rvalue reference alive without copy?...

c++c++11pass-by-referencervalue-reference

Read More
rvalue reference and polymorphism...

c++virtual-functionsrvalue-referenceobject-lifetimetemporary-objects

Read More
What are the rules about using an rvalue reference on the left side of an equals sign?...

c++c++11rvalue-referencelvalue-to-rvalue

Read More
Is it possible to obtain the address of the 'this' pointer?...

c++referencethisrvalue-referencervalue

Read More
Why not define rvalue reference to be rvalue expression?...

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

Read More
Why is a named rvalue reference an lvalue expression?...

c++rvalue-referencevalue-categories

Read More
Do I have to return a pointer from a factory?...

c++c++11factoryrvalue-reference

Read More
When a function takes an rvalue reference, what is the type of that variable within the function?...

c++rvalue-referencelvalue-to-rvalue

Read More
How to override generic function for aguments `const T&` and `T&&` where T could be a re...

c++c++11templatesmove-semanticsrvalue-reference

Read More
decltype((x)) with double brackets what does it mean?...

c++c++11referencervalue-referencedecltype

Read More
rvalue reference usage: needed?...

c++c++14rvalue-referencervalue

Read More
BackNext