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,29 @@
Synopsis:
$common(<word list> / <word list>)
$diff(<word list> / <word list>)
Technical:
These functions are exact opposites. The $common() function finds and
returns all words common to both input lists. The $diff() function
funds are returns all words present in only one list. The two input
lists must be separated by a single forward-slash. Whitespace is not
significant.
Practical:
These functions might be considered useful for statistical information.
For instance, given 2 channels, they could be used to show who is and
isn't on both of them.
Returns:
common: words in both lists
diff: words not in both lists
Examples:
$common(one two three / two three four) returns "two three"
$common(one two / three four) returns "" (empty string)
$diff(one two three / two three four) returns "one four"
$diff(one two / one two) returns "" (empty string)
See Also:
common(6); remws(6); uniq(6)