Seeding from the 1.2 tree.

This commit is contained in:
Dan Mashal
2013-01-01 03:00:55 -08:00
parent d8c87c4ded
commit 87b806a563
1424 changed files with 260320 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
Synopsis:
$sort(<list>)
$numsort(<list>)
Technical:
These functions sort the given list in ascending order. The $sort()
function sorts the list based on character value, while $numsort()
sorts by numeric value.
Practical:
The $sort() function is used primarily for alphabetizing the list. It
isn't true alphabetical order, since uppercase letters come before
lowercase, but it works for most cases. The $numsort() function is
used for sorting a list of numbers. It understands negative numbers,
and any non-number is treated as 0 (zero).
Returns:
the given list, sorted
Examples:
$sort(foo bar blah erf booya) returns "bar blah booya erf foo"
$sort(foo Bar blah Erf booya) returns "Bar Erf blah booya foo"
$numsort(4 -6 34 -96 0) returns "-96 -6 0 4 34"
$numsort(4 -6 34 -96 0Erf blah) returns "-96 -6 0 Erf blah 4 34"