On Thursday, 16 June 2022 at 18:56:57 UTC, Paul Backus wrote:
> ```d
> enum defaultClassConstructor = q{
> this(typeof(this.tupleof) params) {
> static foreach (i; 0..this.tupleof.length)
> this.tupleof[i] = params[i];
> };
> ```
Thanks, it looks very short...
SDB at 79