On Friday, 28 April 2017 at 14:40:03 UTC, Mike Parker wrote:
> Blog:
> https://dlang.org/blog/2017/04/28/automem-hands-free-raii-for-d/
Nice.
One thing, Atila; what about replacing
typeof(u1) u2;
move(u1, u2);
with
typeof(u1) u2 = move(u1);
or, alternatively,
typeof(u1) u2 = u1.move;
?