Note: This website is archived. For up-to-date information about D projects and development, please visit wiki.dlang.org.

Changes between Version 11 and Version 12 of StdLib/ArrayLib

Show
Ignore:
Author:
JarrettBillingsley (IP: 65.117.184.122)
Timestamp:
08/01/07 19:02:40 (17 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • StdLib/ArrayLib

    v11 v12  
    2323== '''`a.sort()`''' == 
    2424 
    25 Sorts the given array in ascending order.  All the elements must be of the same type, or else an exception will be thrown.  Returns the array itself. 
     25Sorts the given array in ascending order.  All the elements must be comparable with one another.  Will call any `opCmp` metamethods.  Returns the array itself. 
    2626 
    2727== '''`a.reverse()`''' ==