On Mon, 14 Jan 2019 22:52:48 +0000, Chris Bare wrote: > auto start = new TextIter(); > auto end = new TextIter();
You shouldn't need to new these. `out` means that the function is going to overwrite the variables. Other than that, I'm not sure.
Neia Neutuladh via Digitalmars-d-learn Mon, 14 Jan 2019 15:36:22 -0800
On Mon, 14 Jan 2019 22:52:48 +0000, Chris Bare wrote: > auto start = new TextIter(); > auto end = new TextIter();
You shouldn't need to new these. `out` means that the function is going to overwrite the variables. Other than that, I'm not sure.