On 4/12/12 5:16 PM, Dmitry Olshansky wrote:
void swap(T)(T lhs, T rhs){
static assert(false, "swap of rvalues has no effect");
}

void swap(T)(ref T lhs, ref T rhs);
{
... //same trustworthy swap
}

I'm not sure how well this scales. We're adding as much boilerplate as functionality here.


Andrei
_______________________________________________
dmd-beta mailing list
[email protected]
http://lists.puremagic.com/mailman/listinfo/dmd-beta

Reply via email to