module jlox.util; template defaultCtor(){ this(Args...)(auto ref Args args){ static foreach(i, a; args) this.tupleof[i] = a; } }