Move Constructors - Converting Lvalues to Rvalues
Richard (Rikki) Andrew Cattermole
richard at cattermole.co.nz
Mon Sep 30 20:28:05 UTC 2024
I suspect that we're going in an entirely wrong direction with move
constructors for two reasons:
1. Nobody has been able to answer what the purpose of them is, is it an
optimization, is it ownership transfer system (which is better done with
isolated).
2. @move on the parameter. This can be inferred, AND applies to other
functions like swap for escape analysis and opAssign!
```d
struct S {
this(@move ref S s) { // copy constructor with the /side effect/ of
invaliding the original, call dependent
s = S.init; // compiler removes this if seen
}
}
void phone(S s1) {
S s2 = s1; // only one of these has to invalidate s1
S s3 = s1;
}
```
I strongly believe not going the attribute route is blocking us in for
worse behaviors.
More information about the Digitalmars-d
mailing list