Initial import of the ircii-pana-1.1-final source tree.

git-svn-id: svn://svn.code.sf.net/p/bitchx/code/tags/ircii-pana-1.1-final@1 13b04d17-f746-0410-82c6-800466cd88b0
This commit is contained in:
Kevin Easton
2008-02-25 09:25:32 +00:00
commit 28febcfea9
1429 changed files with 250653 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)