Re: Visual D Debugger long array expansion indexing fix

2019-09-22 Thread Brett via Digitalmars-d-debugger
On Friday, 20 September 2019 at 07:27:51 UTC, Rainer Schuetze wrote: On 17/09/2019 22:04, Brett wrote: On Tuesday, 17 September 2019 at 17:19:22 UTC, Brett wrote: On Tuesday, 17 September 2019 at 13:48:33 UTC, Brett wrote: does things like [1000...2000] but then lists the values as [0],

Re: Visual D Debugger long array expansion indexing fix

2019-09-20 Thread Rainer Schuetze via Digitalmars-d-debugger
On 17/09/2019 22:04, Brett wrote: > On Tuesday, 17 September 2019 at 17:19:22 UTC, Brett wrote: >> On Tuesday, 17 September 2019 at 13:48:33 UTC, Brett wrote: >>> does things like [1000...2000] >>> >>> but then lists the values as [0], [1], ... >>> >>> Could it use the absolute values [1000],

Re: Visual D Debugger long array expansion indexing fix

2019-09-17 Thread Brett via Digitalmars-d-debugger
On Tuesday, 17 September 2019 at 17:19:22 UTC, Brett wrote: On Tuesday, 17 September 2019 at 13:48:33 UTC, Brett wrote: does things like [1000...2000] but then lists the values as [0], [1], ... Could it use the absolute values [1000], [1001], etc? That way one doesn't have to do mental

Re: Visual D Debugger long array expansion indexing fix

2019-09-17 Thread Brett via Digitalmars-d-debugger
On Tuesday, 17 September 2019 at 13:48:33 UTC, Brett wrote: does things like [1000...2000] but then lists the values as [0], [1], ... Could it use the absolute values [1000], [1001], etc? That way one doesn't have to do mental arithmetic? Obviously not difficult but I see no reason to not do