[Issue 4807] New: Examples for std.array insert and replace

d-bugmail at puremagic.com d-bugmail at puremagic.com
Fri Sep 3 17:37:20 PDT 2010


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

           Summary: Examples for std.array insert and replace
           Product: D
           Version: D2
          Platform: Other
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Phobos
        AssignedTo: nobody at puremagic.com
        ReportedBy: andrej.mitrovich at gmail.com


--- Comment #0 from Andrej Mitrovic <andrej.mitrovich at gmail.com> 2010-09-03 17:37:02 PDT ---
These two are missing examples, might add these:

http://www.digitalmars.com/d/2.0/phobos/std_array.html#insert

int[] a = [ 1, 2, 3, 4 ];
a.insert(2, [ 1, 2 ]);    
assert(a == [ 1, 2, 1, 2, 3, 4 ]);


http://www.digitalmars.com/d/2.0/phobos/std_array.html#replace

int[] a = [ 1, 2, 3, 4 ];
a.replace(1, 3, [ 2, 2 ]);
assert(a == [ 1, 2, 2, 4 ]);

-- 
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