Is there a reason when a function should return a RValue Reference? A technique, or trick, or a idiom or pattern?
MyClass&& func( ... );
I am aware of the danger returning references in general, but sometimes we do it anyway, don't we (T& T::operator=(T) as just one idiomatic example). But how about T&& func(...)? Is there any general place we would gain from that? Probably different when one writes Library or API code, compared to just client code? -- just an idea.