Re: Mutable array with fixed length
On Fri, 05 Sep 2014 00:26:07 + Freddy via Digitalmars-d-learn wrote: > How would you create a mutable array with a fixed(compile error > when trying to change) length. Static arrays have a fixed length and live on the stack. int[12] arr; Dynamic arrays have a mutable length and the memory
Mutable array with fixed length
How would you create a mutable array with a fixed(compile error when trying to change) length.