On Saturday, 22 April 2017 at 22:25:58 UTC, kinke wrote:
int[3][4] arr = void; (cast(int[]) arr)[] = 1; assert(arr[3][2] == 1);
Thanks... I think I prefer to write two loops though :p I wish D built-in arrays supported [,] indexing notation like C# (or as you can do in D for custom types)
