One case of array assignments

Timon Gehr timon.gehr at gmx.ch
Wed Mar 13 13:46:35 PDT 2013


On 03/13/2013 09:23 PM, John Colvin wrote:
> On Wednesday, 13 March 2013 at 20:10:14 UTC, bearophile wrote:
>>> int[10][3] = [1, 2, 3];
>>
>> Currently that second line of code doesn't work.
>>
>> Bye,
>> bearophile
>
> It would be really nice if it did.

Then what's the meaning of

int[3][3] x = [1,2,3];

Is it

int[3][3] x = [[1,2,3],[1,2,3],[1,2,3]];

or

int[3][3] x = [[1,1,1],[2,2,2],[3,3,3]];



More information about the Digitalmars-d mailing list