On Thursday, 18 July 2013 at 23:39:19 UTC, Sean Kelly wrote:
I'd like to add move semantics of a sort which would work via something very like assumeUnique.
That would be great.
For now, cast the class to shared before sending, and cast away shared on receipt. The only other option would be fore std.concurrency to copy the class when sent, but this requires serialization support.
Ahh, that works. Thanks!