DIP 1025--Dynamic Arrays Only Shrink, Never Grow--Withdrawn from Consideration

2019-11-13 Thread Mike Parker via Digitalmars-d-announce
The author of DIP 1025, "Dynamic Arrays Only Shrink, Never Grow", has withdrawn the DIP from consideration. The current round of review has been terminated and the DIP has been removed from the review queue. https://forum.dlang.org/post/iouzzeyscvwekbsan...@forum.dlang.org

DIP 1025--Dynamic Arrays Only Shrink, Never Grow--Community Review Round 1 Begins

2019-11-11 Thread Mike Parker via Digitalmars-d-announce
The first round of Community Review for DIP 1025, "Dynamic Arrays Only Shrink, Never Grow", has begun. To participate, please visit the review thread for the details: https://forum.dlang.org/post/wvbeyxlcdthqvzsgl...@forum.dlang.org *Please leave all feedback in the review thread r

Re: Dynamic arrays

2015-09-01 Thread qznc via Digitalmars-d-announce
On Monday, 31 August 2015 at 22:03:07 UTC, jmh530 wrote: In general, I find myself very easily getting mixed up by the syntax of the static vs. dynamic arrays. For instance, compare int[] x = new int[3]; int[3] y = new int[3]; auto z = new int[3]; x and y are obviously dynamic and static arrays

Re: Dynamic arrays

2015-09-01 Thread Jonathan M Davis via Digitalmars-d-announce
gt;> This is my latest blog post, which is about dynamic arrays: > >> http://minas-mina.com/2015/08/31/dynamic-arrays/ > >> > >> Constructive criticism is welcome. > > > > "Dynamic arrays are allocated on the garbage collected heap" > &

Re: Dynamic arrays

2015-09-01 Thread Ali Çehreli via Digitalmars-d-announce
On 09/01/2015 12:43 AM, qznc wrote: On Monday, 31 August 2015 at 22:03:07 UTC, jmh530 wrote: In general, I find myself very easily getting mixed up by the syntax of the static vs. dynamic arrays. For instance, compare int[] x = new int[3]; int[3] y = new int[3]; auto z = new int[3]; x and y

Dynamic arrays

2015-08-31 Thread Minas Mina via Digitalmars-d-announce
I have started a series of tutorials in D. This is my latest blog post, which is about dynamic arrays: http://minas-mina.com/2015/08/31/dynamic-arrays/ Constructive criticism is welcome.

Re: Dynamic arrays

2015-08-31 Thread anonymous via Digitalmars-d-announce
On Monday 31 August 2015 23:09, Minas Mina wrote: > I have started a series of tutorials in D. > > This is my latest blog post, which is about dynamic arrays: > http://minas-mina.com/2015/08/31/dynamic-arrays/ > > Constructive criticism is welcome. "Dynamic arrays are a

Re: Dynamic arrays

2015-08-31 Thread John Colvin via Digitalmars-d-announce
On Monday, 31 August 2015 at 21:29:09 UTC, anonymous wrote: On Monday 31 August 2015 23:09, Minas Mina wrote: I have started a series of tutorials in D. This is my latest blog post, which is about dynamic arrays: http://minas-mina.com/2015/08/31/dynamic-arrays/ Constructive criticism

Re: Dynamic arrays

2015-08-31 Thread qznc via Digitalmars-d-announce
On Monday, 31 August 2015 at 21:09:02 UTC, Minas Mina wrote: I have started a series of tutorials in D. This is my latest blog post, which is about dynamic arrays: http://minas-mina.com/2015/08/31/dynamic-arrays/ Constructive criticism is welcome. Minor error with strings. It is "immu

Re: Dynamic arrays

2015-08-31 Thread Steven Schveighoffer via Digitalmars-d-announce
On 8/31/15 5:09 PM, Minas Mina wrote: I have started a series of tutorials in D. This is my latest blog post, which is about dynamic arrays: http://minas-mina.com/2015/08/31/dynamic-arrays/ Constructive criticism is welcome. Technical difference, in an array layout, length comes first

Re: Dynamic arrays

2015-08-31 Thread Steven Schveighoffer via Digitalmars-d-announce
On 8/31/15 5:36 PM, John Colvin wrote: On Monday, 31 August 2015 at 21:29:09 UTC, anonymous wrote: On Monday 31 August 2015 23:09, Minas Mina wrote: I have started a series of tutorials in D. This is my latest blog post, which is about dynamic arrays: http://minas-mina.com/2015/08/31/dynamic

Re: Dynamic arrays

2015-08-31 Thread jmh530 via Digitalmars-d-announce
ng section later a bit better, but it's just how I typically do it. You might show some examples of functions where you can pass dynamic arrays, but not static arrays. In general, I find myself very easily getting mixed up by the syntax of the static vs. dynamic arrays. For instance, compar

Re: Dynamic arrays

2015-08-31 Thread anonymous via Digitalmars-d-announce
On Monday 31 August 2015 23:36, John Colvin wrote: > I prefer the term "slice" to dynamic array. Because it's an > unfamiliar term it helps prevent confusion for people who are > used to what other languages call dynamic arrays. I'm not a fan of the term "slice". N

Re: Dynamic arrays

2015-08-31 Thread Minas Mina via Digitalmars-d-announce
On Monday, 31 August 2015 at 21:45:26 UTC, Steven Schveighoffer wrote: On 8/31/15 5:09 PM, Minas Mina wrote: I have started a series of tutorials in D. This is my latest blog post, which is about dynamic arrays: http://minas-mina.com/2015/08/31/dynamic-arrays/ Constructive criticism