On Wednesday, 29 July 2015 at 08:03:06 UTC, anonymous wrote:
int[2][] is exactly an dynamic array of (arrays with the length 2), the logic behind this notation is:1. Array of 2 int -> int[2]2. a dynamic array of 1. -> int[2][] (like SomeType[] is an array of SomeType)
Thank you!