On 3/24/12, H. S. Teoh <[email protected]> wrote: > OK, I found that your template doesn't handle the case where the key > type is an AA.
Heh, yeah, I've never used hashes as key types before. > However, one case remains unsolved: either I can't find the right way to > express this, or the new AA template needs fixing: > > AA!(string[const AA!(int[int])]) meta; Not sure why are you combining old and new syntax in there? Is this what you wanted?: AA!(string[const int[int]]) meta;
