// foo is an associative array/hashtable with // key type: string // value type: int[10] // int[10][string] foo;
// foo["a"] = new int[10]; // Range violation at runtime // foo["a"][0] = 1; // Range violation at runtime
tipdbmp via Digitalmars-d-learn Wed, 21 Mar 2018 08:55:51 -0700
// foo is an associative array/hashtable with // key type: string // value type: int[10] // int[10][string] foo;
// foo["a"] = new int[10]; // Range violation at runtime // foo["a"][0] = 1; // Range violation at runtime