Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
13 lines
658 B
Text
13 lines
658 B
Text
This library provides the Set class, which deals with a collection of unordered
|
|
values with no duplicates. It is a hybrid of Array's intuitive inter-operation
|
|
facilities and Hash's fast lookup.
|
|
|
|
The method to_set is added to Enumerable for convenience.
|
|
|
|
Set implements a collection of unordered values with no duplicates. This is a
|
|
hybrid of Array's intuitive inter-operation facilities and Hash's fast lookup.
|
|
|
|
Set is easy to use with Enumerable objects (implementing each). Most of the
|
|
initializer methods and binary operators accept generic Enumerable objects
|
|
besides sets and arrays. An Enumerable object can be converted to Set using the
|
|
to_set method.
|