[Issue 3962] New: AssociativeArray!(K,V) .init has no [ ] operator

d-bugmail at puremagic.com d-bugmail at puremagic.com
Sun Mar 14 14:13:43 PDT 2010


http://d.puremagic.com/issues/show_bug.cgi?id=3962

           Summary: AssociativeArray!(K,V) .init has no [ ] operator
           Product: D
           Version: 2.041
          Platform: All
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody at puremagic.com
        ReportedBy: philippe.sigaud at gmail.com


--- Comment #0 from Philippe Sigaud <philippe.sigaud at gmail.com> 2010-03-14 22:13:41 CET ---
This code doesn't work:

auto aa = (int[int]).init; // aa is an AssociativeArray!(int,int)
aa[3] = 2; // Error, no [] operator overload for type
AssociativeArray!(int,int)

whereas this works, obviously:

int[int] aa;
aa[3] = 2;

It's problematic for generic code and for template constraints where .init is
the only way to get a value from a type.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------


More information about the Digitalmars-d-bugs mailing list