On 10/5/2024 9:04 PM, Walter Bright via Digitalmars-d wrote: > ``` > struct S { ... } > > this(ref S) // copy constructor > this(this) // postblit > //this(S) // move constructor > ~this() // destructor Not sure this actually would work well or not, but figured I'd add it to the list for consideration: this (move S) // move constructor