[Issue 3824] An AA with an AA as key doesn't seem to work

2015-06-08 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=3824 Andrei Alexandrescu changed: What|Removed |Added Version|2.040 |D2 --

[Issue 3824] An AA with an AA as key doesn't seem to work

2013-01-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3824 bearophile_h...@eml.cc changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution|

[Issue 3824] An AA with an AA as key doesn't seem to work

2013-01-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3824 --- Comment #5 from Don 2013-01-28 00:40:02 PST --- (In reply to comment #1) > It doesn't work still, see: > > void main() { > int[int] aa1 = [1: 2]; > int[int] aa2 = [1: 2]; > int[int[int]] aa3; > aa3[aa1] = 1; > aa3[aa2]

[Issue 3824] An AA with an AA as key doesn't seem to work

2012-10-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3824 --- Comment #4 from bearophile_h...@eml.cc 2012-10-21 14:15:58 PDT --- (In reply to comment #3) > On second thought I'm not sure what you're asking. You want the two keys to be > just one key? Yeah, sorry for not being clear enough. aa1 == aa2

[Issue 3824] An AA with an AA as key doesn't seem to work

2012-10-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3824 --- Comment #3 from Andrej Mitrovic 2012-10-21 13:57:54 PDT --- (In reply to comment #2) > (In reply to comment #1) > > It doesn't work still, see: > > > > void main() { > > int[int] aa1 = [1: 2]; > > int[int] aa2 = [1: 2]; > > in

[Issue 3824] An AA with an AA as key doesn't seem to work

2012-10-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3824 --- Comment #2 from Andrej Mitrovic 2012-10-21 13:54:26 PDT --- (In reply to comment #1) > It doesn't work still, see: > > void main() { > int[int] aa1 = [1: 2]; > int[int] aa2 = [1: 2]; > int[int[int]] aa3; > aa3[aa1] = 1; >

[Issue 3824] An AA with an AA as key doesn't seem to work

2012-10-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3824 bearophile_h...@eml.cc changed: What|Removed |Added Status|RESOLVED|REOPENED Resolution|FIX

[Issue 3824] An AA with an AA as key doesn't seem to work

2012-10-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3824 Andrej Mitrovic changed: What|Removed |Added Status|NEW |RESOLVED CC|