btmux-0.6-rc4/doc/
btmux-0.6-rc4/event/
btmux-0.6-rc4/game/
btmux-0.6-rc4/game/maps/
btmux-0.6-rc4/game/mechs/
btmux-0.6-rc4/game/text/help/
btmux-0.6-rc4/game/text/help/cat_faction/
btmux-0.6-rc4/game/text/help/cat_inform/
btmux-0.6-rc4/game/text/help/cat_misc/
btmux-0.6-rc4/game/text/help/cat_mux/
btmux-0.6-rc4/game/text/help/cat_mux/cat_commands/
btmux-0.6-rc4/game/text/help/cat_mux/cat_functions/
btmux-0.6-rc4/game/text/help/cat_templates/
btmux-0.6-rc4/game/text/wizhelp/
btmux-0.6-rc4/include/
btmux-0.6-rc4/misc/
btmux-0.6-rc4/python/
btmux-0.6-rc4/src/hcode/btech/
btmux-0.6-rc4/tree/
& sort()
 
  Syntax: sort(<list>[, <sort type>[, <delim>]])
 
  Takes a list of words, numbers, or dbref, and sorts them into 
  ascending order. Lexicographic order is used for words, and numeric 
  order is used for numbers and dbrefs.
 
  <sort type> may be used to specify the type of sort to perform (use 
  d for dbref, n for integer numeric, f for floating numeric, and a 
  for alphanumeric). If omitted or left blank, the function will 
  automatically determine the type of sort to perform.
 
  If <delim> is specified, it (rather than a space) is used to 
  separate items in the list. You may specify an alternate delimiter 
  without specifying a sort type by passing a null <sort type> 
  parameter.
 
  Example:
  > say sort(This is a test)
  You say "This a is test"
  > say sort(98 99 100 101)
  You say "98 99 100 102"
  > say sort(foo-bar-bletch,,-)
  You say "bar-bletch-foo"
 
  See Also: sortby()