On Tue, 30 Sep 2014 15:57:57 +0000
Mike James via Digitalmars-d-learn <digitalmars-d-learn@puremagic.com>
wrote:

> How do I initialise a dynamic array of dynamic arrays?
do you mean something like this: `int[][] a`? if yes, do this:

  auto a = new int[][](42, 69);

and you'll get `int[42][69] a`.

heh, people again confused by `new Type[amount]` syntax. that is
concrete sign that this syntax will live forever.

Attachment: signature.asc
Description: PGP signature

Reply via email to