The following:
this(ref InputRange r) {
writeln(&r);
this.r = r;
writeln(&this.r);
}7FFF2BD74D50 // r 7FFF2BD745F0 // this.r Why? And how can I change this?
The following:
this(ref InputRange r) {
writeln(&r);
this.r = r;
writeln(&this.r);
}7FFF2BD74D50 // r 7FFF2BD745F0 // this.r Why? And how can I change this?