Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 2590

Show
Ignore:
Timestamp:
09/30/07 01:48:34 (1 year ago)
Author:
kris
Message:

applied patch from Carlos. Thanks!

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/util/collection/ArraySeq.d

    r2589 r2590  
    669669        } 
    670670 
     671        /*********************************************************************** 
     672 
     673                expose collection content as an array 
     674 
     675        ************************************************************************/ 
     676 
     677        override public T[] toArray () 
     678        { 
     679                return array[0..count].dup; 
     680        } 
     681         
    671682        // helper methods 
    672683