I have already asked a similar question a while ago, but I'm still unclear on some details.
Under what circumstances is the postblit constructor called?
What are the semantics of moving an object? Will it be postblitted and/or destructed?
What happens if I return a local variable by value? Will it implicitly be moved?
How do I cast an expression to an rvalue? For example, how would a generic swap look like?
void swap(T)(ref T t1,ref T t2){T tmp=t1;t1=t2;t2=tmp;}– ratchet freak Jul 30 '11 at 18:13[string](url). Details here – Alexander Malakhov Nov 9 '11 at 2:30