Sort
Usage
• Sort[list] sorts the elements of list into canonical order. • Sort[list, p] sorts using the ordering function p.
Notes
• The canonical ordering used by Mathematica is described in Section A.3.9. • Sort[list, p] applies the function p to pairs of elements in list to determine whether they are in order. The default function p is OrderedQ[{#1, #2}]&. • Sort can be used on expressions with any head, not only List. • New in Version 1.
|