set | The abstract class for FSet functional sets. It is a structure class. |
---|
complement? | |
---|---|
set | |
universe |
arb | Returns an arbitrary member or pair of a set, bag, or map. Specifically, on a nonempty set, retu... |
---|---|
compare | Returns one of :less , :greater , :equal , or :unequal according as x is less than, greate... |
complement | Returns the complement of the set. |
contains? | Returns true iff the set or bag contains x . |
convert | Converts the collection to the specified type. Some methods may take additional keyword argument... |
disjoint? | Returns true iff set1 and set2 have a null intersection (withoutactually constructing said i... |
empty? | Returns true iff the collection is empty. |
internal-do-set | Calls elt-fn on successive elements of the set; when done, calls value-fn on no arguments and... |
intersection | Returns the intersection of the two sets/bags. The result is a bag if both arguments are bags; o... |
less | On a set, removes value1 from it if present, returning the updated set.On a bag, removes valu... |
set-difference | Returns the set difference of set1 and set2, i.e., the set containing every member of set1 that... |
size | Returns the number of members in a set, seq, or bag, or the number of pairs in a map. The size o... |
subset? | Returns true iff sub is a subset of super . |
union | Returns the union of the two sets/bags. The result is a set if both arguments are sets; otherwis... |
with | On a set, adds value1 to it, returning the updated set. On a bag, addsvalue2 occurrences of... |
closure | The transitive closure of the set over the relation. The relation may also be supplied as a func... |
---|---|
count | If collection is a Lisp sequence, this simply calls cl:count . On an FSetcollection, the def... |
count-if | If collection is a Lisp sequence, this simply calls cl:count-if . On anFSet collection, the ... |
count-if-not | If collection is a Lisp sequence, this simply calls cl:count-if-not .On an FSet collection, t... |
filter | Returns a new collection containing those members or pairs of collection for which fn returns... |
find | If collection is a Lisp sequence, this simply calls cl:find . On an FSetcollection, the defa... |
find-if | If collection is a Lisp sequence, this simply calls cl:find-if . On anFSet collection, the ... |
find-if-not | If collection is a Lisp sequence, this simply calls cl:find-if-not .On an FSet collection, th... |
image | Returns a new collection containing the result of applying fn to eachmember of collection , w... |
multiplicity | Returns the multiplicity of x in the bag. |
reduce | If collection is a Lisp sequence, this simply calls cl:reduce (q.v.).On an FSet collection, ... |
sort | Returns seq sorted by pred , a function of two arguments; if key issupplied, it is a functi... |
stable-sort | Returns seq sorted by pred , a function of two arguments; if key issupplied, it is a functi... |