The fset Reference Manual

This is the fset Reference Manual, version 1.3.2, generated automatically by Declt version 4.0 beta 2 "William Riker" on Mon Feb 26 16:27:35 2024 GMT+0.

Table of Contents


1 Introduction


2 Systems

The main system appears first, followed by any subsystem dependency.


2.1 fset

A functional set-theoretic collections library. See: http://www.ergy.com/FSet.html

Author

Scott L. Burson <>

License

LLGPL

Version

1.3.2

Dependencies
  • misc-extensions (system).
  • mt19937 (system).
  • named-readtables (system).
Source

fset.asd.

Child Component

code (module).


3 Modules

Modules are listed depth-first from the system components tree.


3.1 fset/Code

Source

fset.asd.

Parent Component

fset (system).

Child Components

4 Files

Files are sorted by type and then listed depth-first from the systems components trees.


4.1 Lisp


4.1.1 fset/fset.asd

Source

fset.asd.

Parent Component

fset (system).

ASDF Systems

fset.


4.1.2 fset/Code/defs.lisp

Source

fset.asd.

Parent Component

code (module).

Packages

4.1.3 fset/Code/port.lisp

Dependency

defs.lisp (file).

Source

fset.asd.

Parent Component

code (module).

Internals

4.1.4 fset/Code/macros.lisp

Dependency

port.lisp (file).

Source

fset.asd.

Parent Component

code (module).

Public Interface
Internals

4.1.5 fset/Code/order-macros.lisp

Dependency

macros.lisp (file).

Source

fset.asd.

Parent Component

code (module).

Public Interface
Internals

+master-type-ordering+ (symbol macro).


4.1.6 fset/Code/order.lisp

Dependency

order-macros.lisp (file).

Source

fset.asd.

Parent Component

code (module).

Public Interface
Internals

4.1.7 fset/Code/wb-trees.lisp

Dependency

order.lisp (file).

Source

fset.asd.

Parent Component

code (module).

Public Interface
Internals

4.1.8 fset/Code/reader.lisp

Dependency

wb-trees.lisp (file).

Source

fset.asd.

Parent Component

code (module).

Public Interface
Internals

4.1.9 fset/Code/fset-macros.lisp

Dependency

reader.lisp (file).

Source

fset.asd.

Parent Component

code (module).

Public Interface
Internals

4.1.10 fset/Code/fset.lisp

Dependency

fset-macros.lisp (file).

Source

fset.asd.

Parent Component

code (module).

Public Interface
Internals

4.1.11 fset/Code/tuples.lisp

Dependency

fset.lisp (file).

Source

fset.asd.

Parent Component

code (module).

Public Interface
Internals

4.1.12 fset/Code/testing.lisp

Dependency

tuples.lisp (file).

Source

fset.asd.

Parent Component

code (module).

Public Interface
Internals

4.1.13 fset/Code/interval.lisp

Dependency

testing.lisp (file).

Source

fset.asd.

Parent Component

code (module).

Public Interface
Internals

4.1.14 fset/Code/relations.lisp

Dependency

interval.lisp (file).

Source

fset.asd.

Parent Component

code (module).

Public Interface
Internals

4.1.15 fset/Code/complement-sets.lisp

Dependency

relations.lisp (file).

Source

fset.asd.

Parent Component

code (module).

Public Interface
Internals

4.1.16 fset/Code/bounded-sets.lisp

Dependency

complement-sets.lisp (file).

Source

fset.asd.

Parent Component

code (module).

Public Interface
Internals

5 Packages

Packages are listed by definition order.


5.1 fset-user

Source

defs.lisp.

Use List
  • common-lisp.
  • fset.
  • gmap.
  • lexical-contexts.
  • new-let.

5.2 fset

Source

defs.lisp.

Use List
  • common-lisp.
  • gmap.
  • lexical-contexts.
  • new-let.
Used By List

fset-user.

Public Interface
Internals

6 Definitions

Definitions are sorted by export status, category, package, and then by lexicographic order.


6.1 Public Interface


6.1.1 Special variables

Special Variable: *fset-readtable*

A copy of the standard readtable with FSet reader macros installed.

Package

fset.

Source

reader.lisp.


6.1.2 Macros

Macro: 2-relation (&rest args)

Constructs a 2-relation of the default implementation according to the supplied argument subforms. Each argument subform can be a list of the form (‘key-expr’ ‘value-expr’), denoting a mapping from the value of ‘key-expr’ to the value of ‘value-expr’; or a list of the form ($ ‘expression’), in which case the expression must evaluate to a 2-relation, all of whose mappings will be included in the result. Also, each of ’key-expr’ and ’value-expr’ can be of the form ($ ‘expression’), in which case the expression must evaluate to a set, and the elements of the set are used individually to form pairs; for example, the result of

(2-relation (($ (set 1 2)) ($ (set ’a ’b))))

contains the pairs <1, a>, <1, b>, <2, a>, and <2, b>.

Package

fset.

Source

relations.lisp.

Macro: @ (fn-or-collection &rest args)

A little hack with two purposes: (1) to make it easy to make FSet maps behave like Lisp functions in certain contexts; and (2) to somewhat lessen the pain of writing higher-order code in a two-namespace Lisp like Common Lisp. The idea is that you can write ‘(@ fn arg)’, and if ‘fn’ is a Lisp function, it will be funcalled on the argument; otherwise ‘lookup’ (q.v.) will be called on ‘fn’ and ‘arg’. To allow for ‘@’ to be used in more contexts, it actually can take any number of ‘args’, though ‘lookup’ always takes exactly two. Thus you can write ‘(@ fn arg1 arg2 ...)’ when you just want a shorter name for ‘funcall’. As a matter of style, it is suggested that ‘@’ be used only for side-effect-free functions. Also, though this doc string has spoken only of FSet maps, ‘@’ can be used with any type that ‘lookup’ works on. Can be used with ‘setf’, but only on collections, not functions, of course.

Package

fset.

Source

fset-macros.lisp.

Setf expander for this macro

(setf @).

Macro: adjoinf (place &rest item-or-tuple)

(adjoinf coll . args) –> (setf coll (with coll . args))

Package

fset.

Source

macros.lisp.

Macro: appendf (place seq)
Package

fset.

Source

macros.lisp.

Macro: bag (&rest args)

Constructs a bag of the default implementation according to the supplied argument subforms. Each argument subform can be an expression, whose value will be added to the bag with multiplicity 1; or a list of the form
($ ‘expression’), in which case the expression must evaluate to a bag (or a set), which is bag-summed into the result; or a list of the form
(% ‘expression1’ ‘expression2’) (called a "multi-arg"), which indicates that the value of ‘expression1’ is bag-summed into the result with multiplicity given by the value of ‘expression2’. That is, the multiplicity of each member of the result bag is the sum of its multiplicities as supplied by each of the argument subforms.

Package

fset.

Source

reader.lisp.

Macro: compare-slots (obj1 obj2 &rest accessors)

A handy macro for writing the bodies of ‘compare’ methods for user classes. Returns the result of comparing the two objects by comparing the results of calling each of ‘accessors’, in order, on the objects. Despite the name, an accessor can actually be any function on the class in question; it can also be a symbol, which will be used to access the slot via ‘slot-value’. For example, if class ‘frob’ has accessor ‘frob-foo’ and slot ‘bar’:

(defmethod compare ((f1 frob) (f2 frob))
(compare-slots f1 f2 #’frob-foo ’bar))

If the symbol ‘:eql’ is supplied as the last accessor, then if the comparisons by the other supplied accessors all return ‘:equal’ but ‘obj1’ and ‘obj2’ are not eql, this returns ‘:unequal’.

Package

fset.

Source

order-macros.lisp.

Macro: composef (place fn)
Package

fset.

Source

macros.lisp.

Macro: def-tuple-key (name &optional default-fn)

Deprecated; use ‘define-tuple-key’.

Package

fset.

Source

tuples.lisp.

Macro: define-cross-type-compare-methods (type)

Generates cross-type comparison methods for ‘type’ against the types on which the macro has previously been invoked. This macro is intended to be invoked at the top level of a source file. You should make sure that calls to this macro are always compiled in the same order; if you don’t, you could possibly get a "master type ordering out of sync" error, at which point you should delete all your fasls, restart your Lisp session, and recompile. However, the implementation tries very hard to prevent this.

Package

fset.

Source

order-macros.lisp.

Macro: define-tuple-key (name &optional default-fn)

Defines a tuple key named ‘name’ as a global lexical variable (see ‘deflex’). If ‘default-fn’ is supplied, it is used to compute a value for lookups where the tuple has no explicit pair with this key; it is called with one argument, the tuple.

Package

fset.

Source

tuples.lisp.

Macro: do-2-relation ((key val br &optional value) &body body)

Enumerates all pairs of the relation ‘br’, binding them successively to ‘key’ and ‘val’ and executing ‘body’.

Package

fset.

Source

relations.lisp.

Macro: do-bag ((value-var bag &optional value) &body body)

For each member of ‘bag’, binds ‘value-var’ to it and and executes ‘body’ a number of times equal to the member’s multiplicity. When done, returns ‘value’.

Package

fset.

Source

fset-macros.lisp.

Macro: do-bag-pairs ((value-var mult-var bag &optional value) &body body)

For each member of ‘bag’, binds ‘value-var’ and ‘mult-var’ to the member and its multiplicity respectively, and executes ‘body’. When done, returns ‘value’.

Package

fset.

Source

fset-macros.lisp.

Macro: do-list-relation ((tuple rel &optional value) &body body)
Package

fset.

Source

relations.lisp.

Macro: do-map ((key-var value-var map &optional value) &body body)

For each pair of ‘map’, binds ‘key-var’ and ‘value-var’ and executes ‘body’. When done, returns ‘value’.

Package

fset.

Source

fset-macros.lisp.

Macro: do-map-domain ((key-var map &optional value) &body body)

For each pair of ‘map’, binds ‘key-var’ and executes ‘body’. When done, returns ‘value’.

Package

fset.

Source

fset-macros.lisp.

Macro: do-seq ((var seq &key start end from-end? index value) &body body)

For each element of ‘seq’, possibly restricted by ‘start’ and ‘end’, and in reverse order if ‘from-end?’ is true, binds ‘var’ to it and executes ‘body’. If ‘index’ is supplied, it names a variable that will be bound at each iteration to the index of the current element of ‘seq’. When done, returns ‘value’.

Package

fset.

Source

fset-macros.lisp.

Macro: do-set ((var set &optional value) &body body)

For each member of ‘set’, binds ‘var’ to it and executes ‘body’. When done, returns ‘value’.

Package

fset.

Source

fset-macros.lisp.

Macro: do-tuple ((key-var value-var tuple &optional value) &body body)

For each pair of ‘tuple’, binds ‘key-var’ and ‘value-var’ and executes ‘body’. When done, returns ‘value’.

Package

fset.

Source

tuples.lisp.

Macro: dyn-tuple (&rest args)

Constructs a dyn-tuple according to the supplied argument subforms. Each argument subform can be a list of the form (‘key-expr’ ‘value-expr’), denoting a mapping from the value of ‘key-expr’ to the value of ‘value-expr’; or a list of the form ($ ‘expression’), in which case the expression must evaluate to a tuple, denoting all its mappings. The result is constructed from the denoted mappings in left-to-right order; so if a given key is supplied by more than one argument subform, its associated value will be given by the rightmost such subform.

Package

fset.

Source

reader.lisp.

Macro: excludef (place &rest item-or-tuple)

(excludef coll . args) –> (setf coll (less coll . args))

Package

fset.

Source

macros.lisp.

Macro: imagef (place fn)
Package

fset.

Source

macros.lisp.

Macro: includef (place &rest item-or-tuple)

(includef coll . args) –> (setf coll (with coll . args))

Package

fset.

Source

macros.lisp.

Macro: intersectf (place set)
Package

fset.

Source

macros.lisp.

Macro: map (&rest args)

Constructs a map of the default implementation according to the supplied argument subforms. Each argument subform can be a list of the form (‘key-expr’ ‘value-expr’), denoting a mapping from the value of ‘key-expr’ to the value of ‘value-expr’; or a list of the form ($ ‘expression’), in which case the expression must evaluate to a map, denoting all its mappings; or the symbol ‘:default’, in which case the next argument subform is a form whose value will become the map’s default. The result is constructed from the denoted mappings in left-to-right order; so if a given key is supplied by more than one argument subform, its associated value will be given by the rightmost such subform.

Package

fset.

Source

reader.lisp.

Macro: pop-first (seq)

Removes the first element from ‘seq’ and returns it.

Package

fset.

Source

macros.lisp.

Macro: pop-last (seq)

Removes the last element from ‘seq’ and returns it.

Package

fset.

Source

macros.lisp.

Macro: prependf (place seq)
Package

fset.

Source

macros.lisp.

Macro: push-first (place val)

(push-first seq val) –> (setf seq (with-first seq val))

Package

fset.

Source

macros.lisp.

Macro: push-last (place val)

(push-last seq val) –> (setf seq (with-last seq val))

Package

fset.

Source

macros.lisp.

Macro: removef (place &rest item-or-tuple)

(removef coll . args) –> (setf coll (less coll . args))

Package

fset.

Source

macros.lisp.

Macro: seq (&rest args)

Constructs a seq of the default implementation according to the supplied argument subforms. Each argument subform can be an expression whose value is to appear in the sequence; or a list of the form ($ ‘expression’), in which case the expression must evaluate to a sequence, all of whose values appear in the result sequence. The order of the result sequence reflects the order of the argument subforms.

Package

fset.

Source

reader.lisp.

Macro: set (&rest args)

Constructs a set of the default implementation according to the supplied argument subforms. Each argument subform can be an expression, whose value will be a member of the result set; or a list of the form ($ ‘expression’), in which case the expression must evaluate to a set, all of whose members become members of the result set.

Package

fset.

Source

reader.lisp.

Macro: tuple (&rest args)

Constructs a tuple of the default implementation according to the supplied argument subforms. Each argument subform can be a list of the form (‘key-expr’ ‘value-expr’), denoting a mapping from the value of ‘key-expr’ to the value of ‘value-expr’; or a list of the form ($ ‘expression’), in which case the expression must evaluate to a tuple, denoting all its mappings. The result is constructed from the denoted mappings in left-to-right order; so if a given key is supplied by more than one argument subform, its associated value will be given by the rightmost such subform.

Package

fset.

Source

reader.lisp.

Macro: unionf (place set)
Package

fset.

Source

macros.lisp.

Macro: wb-2-relation (&rest args)

Constructs a wb-2-relation according to the supplied argument subforms. Each argument subform can be a list of the form (‘key-expr’ ‘value-expr’), denoting a mapping from the value of ‘key-expr’ to the value of ‘value-expr’; or a list of the form ($ ‘expression’), in which case the expression must evaluate to a 2-relation, all of whose mappings will be included in the result. Also, each of ’key-expr’ and ’value-expr’ can be of the
form ($ ‘expression’), in which case the expression must evaluate to a set, and the elements of the set are used individually to form pairs; for example, the result of

(wb-2-relation (($ (set 1 2)) ($ (set ’a ’b))))

contains the pairs <1, a>, <1, b>, <2, a>, and <2, b>.

Package

fset.

Source

relations.lisp.

Macro: wb-bag (&rest args)

Constructs a wb-bag according to the supplied argument subforms. Each argument subform can be an expression, whose value will be added to the bag with multiplicity 1; or a list of the form ($ ‘expression’), in which case the expression must evaluate to a bag (or a set), which is bag-summed into the result; or a list of the form (% ‘expression1’ ‘expression2’) (called a "multi-arg"), which indicates that the value of ‘expression1’ is bag-summed into the result with multiplicity given by the value of ‘expression2’. That is, the multiplicity of each member of the result bag is the sum of its multiplicities as supplied by each of the argument subforms.

Package

fset.

Source

reader.lisp.

Macro: wb-map (&rest args)

Constructs a wb-map according to the supplied argument subforms. Each argument subform can be a list of the form (‘key-expr’ ‘value-expr’), denoting a mapping from the value of ‘key-expr’ to the value of ‘value-expr’; or a list of the form ($ ‘expression’), in which case the expression must evaluate to a map, denoting all its mappings; or the symbol ‘:default’, in which case the next argument subform is a form whose value will become the map’s default. The result is constructed from the denoted mappings in left-to-right order; so if a given key is supplied by more than one argument subform, its associated value will be given by the rightmost such subform.

Package

fset.

Source

reader.lisp.

Macro: wb-seq (&rest args)

Constructs a wb-seq according to the supplied argument subforms. Each argument subform can be an expression whose value is to appear in the sequence; or a list of the form ($ ‘expression’), in which case the expression must evaluate to a sequence, all of whose values appear in the result sequence. The order of the result sequence reflects the order of the argument subforms.

Package

fset.

Source

reader.lisp.

Macro: wb-set (&rest args)

Constructs a wb-set according to the supplied argument subforms. Each argument subform can be an expression, whose value will be a member of the result set; or a list of the form ($ ‘expression’), in which case the expression must evaluate to a set, all of whose members become members of the result set.

Package

fset.

Source

reader.lisp.


6.1.3 Setf expanders

Setf Expander: (setf @) (collection key)

Adds a pair to a map or updates an existing pair, or adds an element to a sequence or updates an existing element. This does NOT modify the map or sequence; it modifies the place (generalized variable) HOLDING the map or sequence (just like ‘(setf (ldb ...) ...)’). That is, the ‘collection’ subform must be ‘setf’able itself.

Package

fset.

Source

fset.lisp.

Reader

@ (macro).

Setf Expander: (setf lookup) (collection key)

Adds a pair to a map or updates an existing pair, or adds an element to a sequence or updates an existing element. This does NOT modify the map or sequence; it modifies the place (generalized variable) HOLDING the map or sequence (just like ‘(setf (ldb ...) ...)’). That is, the ‘collection’ subform must be ‘setf’able itself.

Package

fset.

Source

fset.lisp.

Reader

lookup (generic function).


6.1.4 Ordinary functions

Function: bag? (object)
Package

fset.

Source

order.lisp.

Function: bounded-set-contents (bs)
Package

fset.

Source

bounded-sets.lisp.

Function: collection? (object)
Package

fset.

Source

order.lisp.

Function: empty-2-relation ()
Package

fset.

Source

relations.lisp.

Function: empty-bag ()

Returns an empty bag of the default implementation.

Package

fset.

Source

fset.lisp.

Function: empty-dyn-tuple ()

Returns an empty dyn-tuple.

Package

fset.

Source

tuples.lisp.

Function: empty-list-relation (&optional arity)

We allow the arity to be temporarily unspecified; it will be taken from the first tuple added, or the first query.

Package

fset.

Source

relations.lisp.

Function: empty-map (&optional default)

Returns an empty map of the default implementation.

Package

fset.

Source

fset.lisp.

Function: empty-query-registry (&optional arity)
Package

fset.

Source

relations.lisp.

Function: empty-seq (&optional default)

Returns an empty seq of the default implementation.

Package

fset.

Source

fset.lisp.

Function: empty-set ()

Returns an empty set of the default implementation.

Package

fset.

Source

fset.lisp.

Function: empty-tuple ()

Returns an empty tuple of the default implementation.

Package

fset.

Source

tuples.lisp.

Function: empty-wb-2-relation ()
Package

fset.

Source

relations.lisp.

Function: empty-wb-bag ()

Returns an empty wb-bag.

Package

fset.

Source

fset.lisp.

Function: empty-wb-list-relation (arity)

We allow the arity to be temporarily unspecified; it will be taken from the first tuple added, or the first query.

Package

fset.

Source

relations.lisp.

Function: empty-wb-map (&optional default)

Returns an empty wb-map.

Package

fset.

Source

fset.lisp.

Function: empty-wb-seq ()

Returns an empty wb-seq.

Package

fset.

Source

fset.lisp.

Function: empty-wb-set ()

Returns an empty wb-set.

Package

fset.

Source

fset.lisp.

Function: equal? (a b)
Package

fset.

Source

order.lisp.

Function: fset-setup-readtable (readtable)

Adds FSet reader macros to ‘readtable’. Returns ‘readtable’.

Package

fset.

Source

reader.lisp.

Function: get-tuple-key (name &optional default-fn)

Finds or creates a tuple key named ‘name’. If the key did not already exist, and ‘default-fn’ is supplied, it is used to compute a value for lookups where the tuple has no explicit pair with this key; it is called with one argument, the tuple.

Package

fset.

Source

tuples.lisp.

Function: head (list)

Another name for the ‘car’ operation on lists.

Package

fset.

Source

fset.lisp.

Function: lastcons (list)

Returns the last cons of ‘list’. This is a renaming of the CL function ‘last’.

Package

fset.

Source

fset.lisp.

Function: make-bounded-set (universe set &optional complement?)
Package

fset.

Source

bounded-sets.lisp.

Reader: map-default (instance)
Writer: (setf map-default) (instance)
Package

fset.

Source

order.lisp.

Target Slot

default.

Function: map? (object)
Package

fset.

Source

order.lisp.

Function: member? (x collection)

Returns true iff ‘x’ is a member of the set or bag. Stylistically, ‘contains?’ is preferred over ‘member?’.

Package

fset.

Source

fset.lisp.

Function: nonempty? (collection)

Returns true iff the collection is not empty.

Package

fset.

Source

fset.lisp.

Function: seq? (object)
Package

fset.

Source

order.lisp.

Function: set? (object)
Package

fset.

Source

order.lisp.

Function: tail (list)

Another name for the ‘cdr’ operation on lists.

Package

fset.

Source

fset.lisp.

Reader: tuple-key-name (instance)
Writer: (setf tuple-key-name) (instance)
Package

fset.

Source

tuples.lisp.

Target Slot

name.

Function: tuple-key? (object)
Package

fset.

Source

tuples.lisp.

Function: tuple? (object)
Package

fset.

Source

order.lisp.


6.1.5 Generic functions

Generic Function: all-queries (reg)
Package

fset.

Methods
Method: all-queries ((reg query-registry))
Source

relations.lisp.

Generic Function: arb (collection)

Returns an arbitrary member or pair of a set, bag, or map. Specifically, on a nonempty set, returns two values, an arbitrary member of the set and true; on a nonempty bag, returns an arbitrary member, its multiplicity, and true; on a nonempty map, returns an arbitrary domain member, its associated value, and true. On an empty set, bag, or map, returns false for all values. Please note that "arbitrary" does not mean "randomly selected"; it simply means that the sole postcondition is that the returned value or pair is a member of the collection.

Package

fset.

Source

fset.lisp.

Methods
Method: arb ((bs bounded-set))
Source

bounded-sets.lisp.

Method: arb ((cs complement-set))
Source

complement-sets.lisp.

Method: arb ((rel wb-list-relation))
Source

relations.lisp.

Method: arb ((br wb-2-relation))
Source

relations.lisp.

Method: arb ((m wb-map))
Method: arb ((m wb-bag))
Method: arb ((s wb-set))
Generic Function: arity (rel)

Returns the arity of the relation ‘rel’.

Package

fset.

Source

relations.lisp.

Methods
Method: arity ((reg query-registry))
Method: arity ((rel wb-list-relation))

Will return ‘nil’ if the arity is not yet specified; see ‘empty-list-relation’.

Method: arity ((br 2-relation))
Generic Function: at-rank (collection rank)

On a set, returns the element with rank ‘rank’; on a bag, returns
that element with its multiplicity as a second value; on a map, returns the pair with that rank as two values. Note that if there are values/keys that are unequal but equivalent in the collection, an arbitrary order will be imposed on them for this purpose; but another collection that is ‘equal?’ but not ‘eq’ to this one will in general order them differently.

Package

fset.

Source

fset.lisp.

Methods
Method: at-rank ((s wb-map) rank)
Method: at-rank ((s wb-bag) rank)
Method: at-rank ((s wb-set) rank)
Generic Function: bag-difference (bag1 bag2)

Returns a bag whose multiplicity, for any value, is its multiplicity in ‘bag1’ less that in ‘bag2’, but of course not less than zero.

Package

fset.

Source

fset.lisp.

Methods
Method: bag-difference ((b wb-bag) (s wb-set))
Method: bag-difference ((s wb-set) (b wb-bag))
Method: bag-difference ((b1 wb-bag) (b2 wb-bag))
Generic Function: bag-product (bag1 bag2)

Returns a bag whose multiplicity, for any value, is the product of its multiplicities in the two argument bags.

Package

fset.

Source

fset.lisp.

Methods
Method: bag-product ((b wb-bag) (s wb-set))
Method: bag-product ((s wb-set) (b wb-bag))
Method: bag-product ((b1 wb-bag) (b2 wb-bag))
Generic Function: bag-sum (bag1 bag2)

Returns a bag whose multiplicity, for any value, is the sum of its multiplicities in the two argument bags.

Package

fset.

Source

fset.lisp.

Methods
Method: bag-sum ((b wb-bag) (s wb-set))
Method: bag-sum ((s wb-set) (b wb-bag))
Method: bag-sum ((b1 wb-bag) (b2 wb-bag))
Generic Function: compare (x y)

Returns one of ‘:less’, ‘:greater’, ‘:equal’, or ‘:unequal’ according as ‘x’ is less than, greater than, or equal to ‘y’, or none of these. While the ordering does not have to be total, it must be consistent: for two values A and B that compare ‘:unequal’ to each other, for any third value C, if A compares ‘:less’ or ‘:greater’ to C, then B must compare to C the same way; and no more than one of A and B can compare ‘:equal’ to C.

Package

fset.

Source

order.lisp.

Methods
Method: compare ((s set) (bs bounded-set))
Source

bounded-sets.lisp.

Method: compare ((bs bounded-set) (s set))
Source

bounded-sets.lisp.

Method: compare ((bs1 bounded-set) (bs2 bounded-set))
Source

bounded-sets.lisp.

Method: compare ((s set) (cs complement-set))
Source

complement-sets.lisp.

Method: compare ((cs complement-set) (s set))
Source

complement-sets.lisp.

Method: compare ((cs1 complement-set) (cs2 complement-set))
Source

complement-sets.lisp.

Method: compare ((a wb-2-relation) (b wb-2-relation))
Source

relations.lisp.

Method: compare ((a relation) (b null))
Source

relations.lisp.

Method: compare ((a null) (b relation))
Source

relations.lisp.

Method: compare ((a relation) (b real))
Source

relations.lisp.

Method: compare ((a real) (b relation))
Source

relations.lisp.

Method: compare ((a relation) (b complex))
Source

relations.lisp.

Method: compare ((a complex) (b relation))
Source

relations.lisp.

Method: compare ((a relation) (b character))
Source

relations.lisp.

Method: compare ((a character) (b relation))
Source

relations.lisp.

Method: compare ((a relation) (b symbol))
Source

relations.lisp.

Method: compare ((a symbol) (b relation))
Source

relations.lisp.

Method: compare ((a relation) (b string))
Source

relations.lisp.

Method: compare ((a string) (b relation))
Source

relations.lisp.

Method: compare ((a relation) (b vector))
Source

relations.lisp.

Method: compare ((a vector) (b relation))
Source

relations.lisp.

Method: compare ((a relation) (b list))
Source

relations.lisp.

Method: compare ((a list) (b relation))
Source

relations.lisp.

Method: compare ((a relation) (b package))
Source

relations.lisp.

Method: compare ((a package) (b relation))
Source

relations.lisp.

Method: compare ((a relation) (b pathname))
Source

relations.lisp.

Method: compare ((a pathname) (b relation))
Source

relations.lisp.

Method: compare ((a relation) (b set))
Source

relations.lisp.

Method: compare ((a set) (b relation))
Source

relations.lisp.

Method: compare ((a relation) (b bag))
Source

relations.lisp.

Method: compare ((a bag) (b relation))
Source

relations.lisp.

Method: compare ((a relation) (b map))
Source

relations.lisp.

Method: compare ((a map) (b relation))
Source

relations.lisp.

Method: compare ((a relation) (b seq))
Source

relations.lisp.

Method: compare ((a seq) (b relation))
Source

relations.lisp.

Method: compare ((a relation) (b tuple))
Source

relations.lisp.

Method: compare ((a tuple) (b relation))
Source

relations.lisp.

Method: compare ((a relation) (b identity-ordering-mixin))
Source

relations.lisp.

Method: compare ((a identity-ordering-mixin) (b relation))
Source

relations.lisp.

Method: compare ((iv0 interval) (iv1 interval))
Source

interval.lisp.

Method: compare ((iv interval) x)
Source

interval.lisp.

Method: compare (x (iv interval))
Source

interval.lisp.

Method: compare ((x my-integer) (y my-integer))
Source

testing.lisp.

Method: compare ((tup1 tuple) (tup2 tuple))
Source

tuples.lisp.

Method: compare ((x tuple-desc) (y tuple-desc))
Source

tuples.lisp.

Method: compare ((key1 tuple-key) (key2 tuple-key))
Source

tuples.lisp.

Method: compare ((s1 wb-seq) (s2 wb-seq))
Source

fset.lisp.

Method: compare ((map1 wb-map) (map2 wb-map))
Source

fset.lisp.

Method: compare ((b1 wb-bag) (b2 wb-bag))
Source

fset.lisp.

Method: compare ((s1 wb-set) (s2 wb-set))
Source

fset.lisp.

Method: compare ((eqvm1 equivalent-map) (eqvm2 equivalent-map))

Returns ‘:less’ or ‘:greater’ if the domain values in ‘eqvm1’ are less than resp. greater than those in ‘eqvm2’; or EITHER ‘:equal’ or ‘:unequal’ if those in ‘eqvm1’ are equivalent to those in ‘eqvm2’.

Source

wb-trees.lisp.

Method: compare ((eqvm equivalent-map) key)

Returns ‘:less’ or ‘:greater’ if the domain values in ‘eqvm’ are less than resp. greater than ‘key’; or EITHER ‘:equal’ or ‘:unequal’ if ‘key’ is equivalent to any domain value in ‘eqvm’.

Source

wb-trees.lisp.

Method: compare (key (eqvm equivalent-map))

Returns ‘:less’ or ‘:greater’ if ‘key’ is less than resp. greater than the domain values in ‘eqvm’; or EITHER ‘:equal’ or ‘:unequal’ if ‘x’ is equivalent to any domain value in ‘eqvm’.

Source

wb-trees.lisp.

Method: compare ((eqvs1 equivalent-bag) (eqvs2 equivalent-bag))

Returns ‘:less’ or ‘:greater’ if the values in ‘eqvs1’ are less than resp. greater than those in ‘eqvs2’; returns EITHER ‘:equal’ or ‘:unequal’ if those in ‘eqvs1’ are equivalent to those in ‘eqvs2’.

Source

wb-trees.lisp.

Method: compare ((eqvs equivalent-bag) x)

Returns ‘:less’ or ‘:greater’ if the values in ‘eqvs’ are less than resp. greater than ‘x’; or EITHER ‘:equal’ or ‘:unequal’ if ‘x’ is equivalent to any value in ‘eqvs’.

Source

wb-trees.lisp.

Method: compare (x (eqvs equivalent-bag))

Returns ‘:less’ or ‘:greater’ if ‘x’ is less than resp. greater than the values in ‘eqvs’; or EITHER ‘:equal’ or ‘:unequal’ if ‘x’ is equivalent to any value in ‘eqvs’.

Source

wb-trees.lisp.

Method: compare ((eqvs1 equivalent-set) (eqvs2 equivalent-set))

Returns ‘:less’ or ‘:greater’ if the values in ‘eqvs1’ are less than resp. greater than those in ‘eqvs2’; returns EITHER ‘:equal’ or ‘:unequal’ if those in ‘eqvs1’ are equivalent to those in ‘eqvs2’.

Source

wb-trees.lisp.

Method: compare ((eqvs equivalent-set) x)

Returns ‘:less’ or ‘:greater’ if the values in ‘eqvs’ are less than resp. greater than ‘x’; or EITHER ‘:equal’ or ‘:unequal’ if ‘x’ is equivalent to any value in ‘eqvs’.

Source

wb-trees.lisp.

Method: compare (x (eqvs equivalent-set))

Returns ‘:less’ or ‘:greater’ if ‘x’ is less than resp. greater than the values in ‘eqvs’; or EITHER ‘:equal’ or ‘:unequal’ if ‘x’ is equivalent to any value in ‘eqvs’.

Source

wb-trees.lisp.

Method: compare ((a pathname) (b pathname))
Method: compare ((a package) (b package))
Method: compare ((a list) (b list))
Method: compare ((a vector) (b vector))
Method: compare ((a string) (b string))
Method: compare ((a symbol) (b symbol))
Method: compare ((a character) (b character))
Method: compare ((a complex) (b complex))
Method: compare ((a real) (b real))
Method: compare ((a null) (b null))
Method: compare ((a identity-ordering-mixin) (b null))
Method: compare ((a null) (b identity-ordering-mixin))
Method: compare ((a identity-ordering-mixin) (b real))
Method: compare ((a real) (b identity-ordering-mixin))
Method: compare ((a identity-ordering-mixin) (b complex))
Method: compare ((a complex) (b identity-ordering-mixin))
Method: compare ((a identity-ordering-mixin) (b character))
Method: compare ((a character) (b identity-ordering-mixin))
Method: compare ((a identity-ordering-mixin) (b symbol))
Method: compare ((a symbol) (b identity-ordering-mixin))
Method: compare ((a identity-ordering-mixin) (b string))
Method: compare ((a string) (b identity-ordering-mixin))
Method: compare ((a identity-ordering-mixin) (b vector))
Method: compare ((a vector) (b identity-ordering-mixin))
Method: compare ((a identity-ordering-mixin) (b list))
Method: compare ((a list) (b identity-ordering-mixin))
Method: compare ((a identity-ordering-mixin) (b package))
Method: compare ((a package) (b identity-ordering-mixin))
Method: compare ((a identity-ordering-mixin) (b pathname))
Method: compare ((a pathname) (b identity-ordering-mixin))
Method: compare ((a identity-ordering-mixin) (b set))
Method: compare ((a set) (b identity-ordering-mixin))
Method: compare ((a identity-ordering-mixin) (b bag))
Method: compare ((a bag) (b identity-ordering-mixin))
Method: compare ((a identity-ordering-mixin) (b map))
Method: compare ((a map) (b identity-ordering-mixin))
Method: compare ((a identity-ordering-mixin) (b seq))
Method: compare ((a seq) (b identity-ordering-mixin))
Method: compare ((a identity-ordering-mixin) (b tuple))
Method: compare ((a tuple) (b identity-ordering-mixin))
Method: compare ((a tuple) (b null))
Method: compare ((a null) (b tuple))
Method: compare ((a tuple) (b real))
Method: compare ((a real) (b tuple))
Method: compare ((a tuple) (b complex))
Method: compare ((a complex) (b tuple))
Method: compare ((a tuple) (b character))
Method: compare ((a character) (b tuple))
Method: compare ((a tuple) (b symbol))
Method: compare ((a symbol) (b tuple))
Method: compare ((a tuple) (b string))
Method: compare ((a string) (b tuple))
Method: compare ((a tuple) (b vector))
Method: compare ((a vector) (b tuple))
Method: compare ((a tuple) (b list))
Method: compare ((a list) (b tuple))
Method: compare ((a tuple) (b package))
Method: compare ((a package) (b tuple))
Method: compare ((a tuple) (b pathname))
Method: compare ((a pathname) (b tuple))
Method: compare ((a tuple) (b set))
Method: compare ((a set) (b tuple))
Method: compare ((a tuple) (b bag))
Method: compare ((a bag) (b tuple))
Method: compare ((a tuple) (b map))
Method: compare ((a map) (b tuple))
Method: compare ((a tuple) (b seq))
Method: compare ((a seq) (b tuple))
Method: compare ((a seq) (b null))
Method: compare ((a null) (b seq))
Method: compare ((a seq) (b real))
Method: compare ((a real) (b seq))
Method: compare ((a seq) (b complex))
Method: compare ((a complex) (b seq))
Method: compare ((a seq) (b character))
Method: compare ((a character) (b seq))
Method: compare ((a seq) (b symbol))
Method: compare ((a symbol) (b seq))
Method: compare ((a seq) (b string))
Method: compare ((a string) (b seq))
Method: compare ((a seq) (b vector))
Method: compare ((a vector) (b seq))
Method: compare ((a seq) (b list))
Method: compare ((a list) (b seq))
Method: compare ((a seq) (b package))
Method: compare ((a package) (b seq))
Method: compare ((a seq) (b pathname))
Method: compare ((a pathname) (b seq))
Method: compare ((a seq) (b set))
Method: compare ((a set) (b seq))
Method: compare ((a seq) (b bag))
Method: compare ((a bag) (b seq))
Method: compare ((a seq) (b map))
Method: compare ((a map) (b seq))
Method: compare ((a map) (b null))
Method: compare ((a null) (b map))
Method: compare ((a map) (b real))
Method: compare ((a real) (b map))
Method: compare ((a map) (b complex))
Method: compare ((a complex) (b map))
Method: compare ((a map) (b character))
Method: compare ((a character) (b map))
Method: compare ((a map) (b symbol))
Method: compare ((a symbol) (b map))
Method: compare ((a map) (b string))
Method: compare ((a string) (b map))
Method: compare ((a map) (b vector))
Method: compare ((a vector) (b map))
Method: compare ((a map) (b list))
Method: compare ((a list) (b map))
Method: compare ((a map) (b package))
Method: compare ((a package) (b map))
Method: compare ((a map) (b pathname))
Method: compare ((a pathname) (b map))
Method: compare ((a map) (b set))
Method: compare ((a set) (b map))
Method: compare ((a map) (b bag))
Method: compare ((a bag) (b map))
Method: compare ((a bag) (b null))
Method: compare ((a null) (b bag))
Method: compare ((a bag) (b real))
Method: compare ((a real) (b bag))
Method: compare ((a bag) (b complex))
Method: compare ((a complex) (b bag))
Method: compare ((a bag) (b character))
Method: compare ((a character) (b bag))
Method: compare ((a bag) (b symbol))
Method: compare ((a symbol) (b bag))
Method: compare ((a bag) (b string))
Method: compare ((a string) (b bag))
Method: compare ((a bag) (b vector))
Method: compare ((a vector) (b bag))
Method: compare ((a bag) (b list))
Method: compare ((a list) (b bag))
Method: compare ((a bag) (b package))
Method: compare ((a package) (b bag))
Method: compare ((a bag) (b pathname))
Method: compare ((a pathname) (b bag))
Method: compare ((a bag) (b set))
Method: compare ((a set) (b bag))
Method: compare ((a set) (b null))
Method: compare ((a null) (b set))
Method: compare ((a set) (b real))
Method: compare ((a real) (b set))
Method: compare ((a set) (b complex))
Method: compare ((a complex) (b set))
Method: compare ((a set) (b character))
Method: compare ((a character) (b set))
Method: compare ((a set) (b symbol))
Method: compare ((a symbol) (b set))
Method: compare ((a set) (b string))
Method: compare ((a string) (b set))
Method: compare ((a set) (b vector))
Method: compare ((a vector) (b set))
Method: compare ((a set) (b list))
Method: compare ((a list) (b set))
Method: compare ((a set) (b package))
Method: compare ((a package) (b set))
Method: compare ((a set) (b pathname))
Method: compare ((a pathname) (b set))
Method: compare ((a pathname) (b null))
Method: compare ((a null) (b pathname))
Method: compare ((a pathname) (b real))
Method: compare ((a real) (b pathname))
Method: compare ((a pathname) (b complex))
Method: compare ((a complex) (b pathname))
Method: compare ((a pathname) (b character))
Method: compare ((a character) (b pathname))
Method: compare ((a pathname) (b symbol))
Method: compare ((a symbol) (b pathname))
Method: compare ((a pathname) (b string))
Method: compare ((a string) (b pathname))
Method: compare ((a pathname) (b vector))
Method: compare ((a vector) (b pathname))
Method: compare ((a pathname) (b list))
Method: compare ((a list) (b pathname))
Method: compare ((a pathname) (b package))
Method: compare ((a package) (b pathname))
Method: compare ((a package) (b null))
Method: compare ((a null) (b package))
Method: compare ((a package) (b real))
Method: compare ((a real) (b package))
Method: compare ((a package) (b complex))
Method: compare ((a complex) (b package))
Method: compare ((a package) (b character))
Method: compare ((a character) (b package))
Method: compare ((a package) (b symbol))
Method: compare ((a symbol) (b package))
Method: compare ((a package) (b string))
Method: compare ((a string) (b package))
Method: compare ((a package) (b vector))
Method: compare ((a vector) (b package))
Method: compare ((a package) (b list))
Method: compare ((a list) (b package))
Method: compare ((a list) (b null))
Method: compare ((a null) (b list))
Method: compare ((a list) (b real))
Method: compare ((a real) (b list))
Method: compare ((a list) (b complex))
Method: compare ((a complex) (b list))
Method: compare ((a list) (b character))
Method: compare ((a character) (b list))
Method: compare ((a list) (b symbol))
Method: compare ((a symbol) (b list))
Method: compare ((a list) (b string))
Method: compare ((a string) (b list))
Method: compare ((a list) (b vector))
Method: compare ((a vector) (b list))
Method: compare ((a vector) (b null))
Method: compare ((a null) (b vector))
Method: compare ((a vector) (b real))
Method: compare ((a real) (b vector))
Method: compare ((a vector) (b complex))
Method: compare ((a complex) (b vector))
Method: compare ((a vector) (b character))
Method: compare ((a character) (b vector))
Method: compare ((a vector) (b symbol))
Method: compare ((a symbol) (b vector))
Method: compare ((a vector) (b string))
Method: compare ((a string) (b vector))
Method: compare ((a string) (b null))
Method: compare ((a null) (b string))
Method: compare ((a string) (b real))
Method: compare ((a real) (b string))
Method: compare ((a string) (b complex))
Method: compare ((a complex) (b string))
Method: compare ((a string) (b character))
Method: compare ((a character) (b string))
Method: compare ((a string) (b symbol))
Method: compare ((a symbol) (b string))
Method: compare ((a symbol) (b null))
Method: compare ((a null) (b symbol))
Method: compare ((a symbol) (b real))
Method: compare ((a real) (b symbol))
Method: compare ((a symbol) (b complex))
Method: compare ((a complex) (b symbol))
Method: compare ((a symbol) (b character))
Method: compare ((a character) (b symbol))
Method: compare ((a character) (b null))
Method: compare ((a null) (b character))
Method: compare ((a character) (b real))
Method: compare ((a real) (b character))
Method: compare ((a character) (b complex))
Method: compare ((a complex) (b character))
Method: compare ((a complex) (b null))
Method: compare ((a null) (b complex))
Method: compare ((a complex) (b real))
Method: compare ((a real) (b complex))
Method: compare ((a real) (b null))
Method: compare ((a null) (b real))
Method: compare (a b)
Method: compare ((obj1 identity-ordering-mixin) (obj2 identity-ordering-mixin))
Generic Function: compare-lexicographically (a b)

Returns the result of a lexicographic comparison of ‘a’ and ‘b’, which can be strings, vectors, lists, or seqs.

Package

fset.

Source

order.lisp.

Methods
Method: compare-lexicographically ((s1 wb-seq) (s2 wb-seq))
Source

fset.lisp.

Method: compare-lexicographically ((a vector) (b vector))
Method: compare-lexicographically ((a list) (b list))
Method: compare-lexicographically ((a string) (b string))
Generic Function: complement (set)

Returns the complement of the set.

Package

fset.

Source

complement-sets.lisp.

Methods
Method: complement ((bs bounded-set))
Source

bounded-sets.lisp.

Method: complement ((cs complement-set))
Method: complement ((s set))
Method: complement ((x function))
Generic Function: compose (map1 map2-or-fn)

Returns a new map with the same domain as ‘map1’, which maps each member of that domain to the result of applying first ‘map1’ to it, then applying ‘map2-or-fn’ to the result. ‘map2-or-fn’ can also be a sequence, which is treated as a map from indices to members.

Package

fset.

Source

fset.lisp.

Methods
Method: compose ((rel1 wb-2-relation) (rel2 wb-2-relation))
Source

relations.lisp.

Method: compose ((rel wb-2-relation) (fn seq))
Source

relations.lisp.

Method: compose ((rel wb-2-relation) (fn map))
Source

relations.lisp.

Method: compose ((rel wb-2-relation) (fn symbol))
Source

relations.lisp.

Method: compose ((rel wb-2-relation) (fn function))
Source

relations.lisp.

Method: compose ((m wb-map) (s seq))
Method: compose ((m wb-map) (fn symbol))
Method: compose ((m wb-map) (fn function))
Method: compose ((map1 map) (map2 wb-map))
Generic Function: concat (seq1 &rest seqs)

Returns the concatenation of ‘seq1’ with each of ‘seqs’.

Package

fset.

Source

fset.lisp.

Methods
Method: concat ((s1 seq) &rest seqs)
Method: concat ((a list) &rest seqs)
Generic Function: conflicts (2-relation)

Returns a 2-relation containing only those pairs of ‘2-relation’ whose domain value is mapped to multiple range values.

Package

fset.

Source

relations.lisp.

Methods
Method: conflicts ((br wb-2-relation))
Generic Function: contains? (collection x &optional y)

Returns true iff the set or bag contains ‘x’, or the map or relation contains the pair <x, y>.

Package

fset.

Source

fset.lisp.

Methods
Method: contains? ((bs bounded-set) x &optional arg2)
Source

bounded-sets.lisp.

Method: contains? ((cs complement-set) x &optional y)
Source

complement-sets.lisp.

Method: contains? ((rel wb-list-relation) tuple &optional arg2)
Source

relations.lisp.

Method: contains? ((br wb-2-relation) x &optional y)
Source

relations.lisp.

Method: contains? ((m wb-map) x &optional y)
Method: contains? ((b wb-bag) x &optional y)
Method: contains? ((s wb-set) x &optional y)
Generic Function: convert (to-type collection &key key-fn value-fn from-type pair-fn &allow-other-keys)

Converts the collection to the specified type. Some methods may
take additional keyword arguments to further specify the kind of conversion.

Package

fset.

Source

fset.lisp.

Methods
Method: convert ((to-type (eql fset:wb-set)) (bs bounded-set) &key)
Source

bounded-sets.lisp.

Method: convert ((to-type (eql fset:map-to-sets)) (br wb-2-relation) &key)

This conversion returns a map mapping each domain value to the set of corresponding range values.

Source

relations.lisp.

Method: convert ((to-type (eql fset:wb-map)) (br wb-2-relation) &key)

This conversion requires the relation to be functional, and returns a map representing the function; that is, the relation must map each domain value to a single range value, and the returned map maps that domain value to that range value.

Source

relations.lisp.

Method: convert ((to-type (eql fset:map)) (br wb-2-relation) &key)

This conversion requires the relation to be functional, and returns a map representing the function; that is, the relation must map each domain value to a single range value, and the returned map maps that domain value to that range value.

Source

relations.lisp.

Method: convert ((to-type (eql fset:wb-2-relation)) (s seq) &key key-fn value-fn)
Source

relations.lisp.

Method: convert ((to-type (eql fset:2-relation)) (s seq) &key key-fn value-fn)
Source

relations.lisp.

Method: convert ((to-type (eql fset:wb-2-relation)) (alist list) &key key-fn value-fn)
Source

relations.lisp.

Method: convert ((to-type (eql fset:2-relation)) (alist list) &key key-fn value-fn)
Source

relations.lisp.

Method: convert ((to-type (eql fset:wb-2-relation)) (m map) &key from-type)

If ‘from-type’ is the symbol ‘map-to-sets’, the range elements must all be sets, and the result pairs each domain element with each member of the corresponding range set. Otherwise, the result pairs each domain element with the corresponding range element directly.

Source

relations.lisp.

Method: convert ((to-type (eql fset:2-relation)) (m map) &key from-type)

If ‘from-type’ is the symbol ‘map-to-sets’, the range elements must all be sets, and the result pairs each domain element with each member of the corresponding range set. Otherwise, the result pairs each domain element with the corresponding range element directly.

Source

relations.lisp.

Method: convert ((to-type (eql fset:set)) (br 2-relation) &key pair-fn)
Source

relations.lisp.

Method: convert ((to-type (eql fset:wb-2-relation)) (br wb-2-relation) &key)
Source

relations.lisp.

Method: convert ((to-type (eql fset:2-relation)) (br 2-relation) &key)
Source

relations.lisp.

Method: convert ((to-type (eql list)) (tup tuple) &key pair-fn)
Source

tuples.lisp.

Method: convert ((to-type (eql fset:map)) (tup tuple) &key)
Source

tuples.lisp.

Method: convert ((to-type (eql fset:wb-seq)) (m map) &key pair-fn)
Method: convert ((to-type (eql fset:wb-seq)) (b bag) &key)
Method: convert ((to-type (eql fset:wb-set)) (s wb-seq) &key)
Method: convert ((to-type (eql fset:set)) (s wb-seq) &key)
Method: convert ((to-type (eql fset:wb-seq)) (s set) &key)
Method: convert ((to-type (eql fset:seq)) (s set) &key)
Method: convert ((to-type (eql list)) (s wb-seq) &key)
Method: convert ((to-type (eql fset:wb-seq)) (l list) &key)
Method: convert ((to-type (eql fset:seq)) (l list) &key)
Method: convert ((to-type (eql string)) (s wb-seq) &key)
Method: convert ((to-type (eql vector)) (s wb-seq) &key)
Method: convert ((to-type (eql fset:wb-seq)) (vec vector) &key)
Method: convert ((to-type (eql fset:seq)) (vec vector) &key)
Method: convert ((to-type (eql fset:wb-seq)) (s wb-seq) &key)
Method: convert ((to-type (eql fset:seq)) (s seq) &key)
Method: convert ((to-type (eql hash-table)) (m map) &rest make-hash-table-args &key &allow-other-keys)
Method: convert ((to-type (eql fset:wb-map)) (ht hash-table) &key)
Method: convert ((to-type (eql fset:map)) (ht hash-table) &key)
Method: convert ((to-type (eql fset:wb-map)) (b bag) &key)
Method: convert ((to-type (eql fset:map)) (b bag) &key)
Method: convert ((to-type (eql fset:wb-map)) (s sequence) &key key-fn value-fn)
Method: convert ((to-type (eql fset:map)) (s sequence) &key key-fn value-fn)
Method: convert ((to-type (eql fset:wb-map)) (list list) &key key-fn value-fn)
Method: convert ((to-type (eql fset:map)) (list list) &key key-fn value-fn)
Method: convert ((to-type (eql fset:set)) (m map) &key pair-fn)
Method: convert ((to-type (eql vector)) (m map) &key pair-fn)
Method: convert ((to-type (eql fset:seq)) (m map) &key pair-fn)
Method: convert ((to-type (eql list)) (m map) &key pair-fn)
Method: convert ((to-type (eql fset:wb-map)) (m wb-map) &key)
Method: convert ((to-type (eql fset:map)) (m map) &key)
Method: convert ((to-type (eql fset:wb-bag)) (s sequence) &key)
Method: convert ((to-type (eql fset:bag)) (s sequence) &key)
Method: convert ((to-type (eql fset:wb-bag)) (l list) &key from-type)

If ‘from-type’ is the symbol ‘alist’, treats the operand as an alist where the cdr of each pair (which must be a positive integer) is the member count for the car. Otherwise the operand is treated as a simple list of members, some of which may be repeated.

Method: convert ((to-type (eql fset:bag)) (l list) &key from-type)

If ‘from-type’ is the symbol ‘alist’, treats the operand as an alist where the cdr of each pair (which must be a positive integer) is the member count for the car. Otherwise the operand is treated as a simple list of members, some of which may be repeated.

Method: convert ((to-type (eql fset:alist)) (b bag) &key)
Method: convert ((to-type (eql vector)) (b bag) &key)
Method: convert ((to-type (eql fset:seq)) (b bag) &key)
Method: convert ((to-type (eql list)) (b bag) &key)
Method: convert ((to-type (eql fset:wb-set)) (b wb-bag) &key)
Method: convert ((to-type (eql fset:set)) (b wb-bag) &key)
Method: convert ((to-type (eql fset:wb-bag)) (b wb-bag) &key)
Method: convert ((to-type (eql fset:bag)) (b bag) &key)
Method: convert ((to-type (eql fset:wb-set)) (s sequence) &key)
Method: convert ((to-type (eql fset:set)) (s sequence) &key)
Method: convert ((to-type (eql fset:wb-set)) (l list) &key)
Method: convert ((to-type (eql fset:set)) (l list) &key)
Method: convert ((to-type (eql vector)) (s set) &key)
Method: convert ((to-type (eql list)) (s set) &key)
Method: convert ((to-type (eql fset:wb-bag)) (s wb-set) &key)
Method: convert ((to-type (eql fset:bag)) (s wb-set) &key)
Method: convert ((to-type (eql fset:wb-set)) (s wb-set) &key)
Method: convert ((to-type (eql fset:set)) (s set) &key)
Method: convert ((to-type (eql vector)) (v vector) &key)
Method: convert ((to-type (eql list)) (ls list) &key)
Generic Function: count (item collection &key key test start end from-end test-not)

If ‘collection’ is a Lisp sequence, this simply calls ‘cl:count’. On an FSet collection, the default for ‘test’ is ‘equal?’; the ‘:test-not’ keyword is not accepted; and the ‘:start’, ‘:end’, and ‘:from-end’ keywords are accepted only if ‘collection’ is a seq. Also, on a map, this scans the domain.

Package

fset.

Source

fset.lisp.

Methods
Method: count (item (s seq) &key key test start end from-end)
Method: count (item (m map) &key key test)
Method: count (item (b bag) &key key test)
Method: count (item (s set) &key key test)
Method: count (item (s sequence) &rest keyword-args &key key test test-not start end from-end)
Generic Function: count-if (pred collection &key key start end from-end)

If ‘collection’ is a Lisp sequence, this simply calls ‘cl:count-if’. On an FSet collection, the ‘:start’, ‘:end’, and ‘:from-end’ keywords are accepted only if ‘collection’ is a seq. Also, on a map, this scans the domain.

Package

fset.

Source

fset.lisp.

Methods
Method: count-if (pred (s seq) &key key start end from-end)
Method: count-if (pred (m map) &key key)
Method: count-if (pred (b bag) &key key)
Method: count-if (pred (s set) &key key)
Method: count-if (pred (s sequence) &rest keyword-args &key key start end from-end)
Generic Function: count-if-not (pred collection &key key start end from-end)

If ‘collection’ is a Lisp sequence, this simply calls ‘cl:count-if-not’.
On an FSet collection, the ‘:start’, ‘:end’, and ‘:from-end’ keywords are accepted only if ‘collection’ is a seq. Also, on a map, this scans the domain.

Package

fset.

Source

fset.lisp.

Methods
Method: count-if-not (pred (s seq) &key key start end from-end)
Method: count-if-not (pred (m map) &key key)
Method: count-if-not (pred (s bag) &key key)
Method: count-if-not (pred (s set) &key key)
Method: count-if-not (pred (s sequence) &rest keyword-args &key key start end from-end)
Generic Function: disjoint? (set1 set2)

Returns true iff ‘set1’ and ‘set2’ have a null intersection (without actually constructing said intersection).

Package

fset.

Source

fset.lisp.

Methods
Method: disjoint? ((bs1 bounded-set) (bs2 bounded-set))
Source

bounded-sets.lisp.

Method: disjoint? ((s set) (cs complement-set))
Source

complement-sets.lisp.

Method: disjoint? ((cs complement-set) (s set))
Source

complement-sets.lisp.

Method: disjoint? ((cs1 complement-set) (cs2 complement-set))
Source

complement-sets.lisp.

Method: disjoint? ((s1 wb-set) (s2 wb-set))
Generic Function: domain (map)

Returns the domain of the map, that is, the set of keys mapped by the map.

Package

fset.

Source

fset.lisp.

Methods
Method: domain ((br wb-2-relation))
Source

relations.lisp.

Method: domain ((tup dyn-tuple))
Source

tuples.lisp.

Method: domain ((s wb-seq))
Method: domain ((m wb-map))
Generic Function: domain-contains? (collection x)

Returns true iff the domain of the map or seq contains ‘x’. (The domain of a seq is the set of valid indices.)

Package

fset.

Source

fset.lisp.

Methods
Method: domain-contains? ((s seq) x)
Method: domain-contains? ((m wb-map) x)
Generic Function: empty? (collection)

Returns true iff the collection is empty.

Package

fset.

Source

fset.lisp.

Methods
Method: empty? ((bs bounded-set))
Source

bounded-sets.lisp.

Method: empty? ((rel wb-list-relation))
Source

relations.lisp.

Method: empty? ((br wb-2-relation))
Source

relations.lisp.

Method: empty? ((s interval-set))
Source

interval.lisp.

Method: empty? ((s sequence))
Method: empty? ((l list))
Method: empty? ((s wb-seq))
Method: empty? ((m wb-map))
Method: empty? ((b wb-bag))
Method: empty? ((s wb-set))
Generic Function: filter (fn collection)

Returns a new collection containing those members or pairs of ‘collection’ for which ‘fn’ returns true. If ‘collection’ is a set, bag, or seq, ‘fn’ is called with one argument; if a map, ‘fn’ is called with two arguments, the key and the value (the map-default of the result is that of ‘collection’). As well as a Lisp function, ‘fn’ can be a map, or a set (which is treated as mapping its members to true and everything else to false).

Package

fset.

Source

fset.lisp.

Methods
Method: filter ((fn bag) (s seq))
Method: filter ((fn set) (s seq))
Method: filter ((fn map) (s seq))
Method: filter ((fn symbol) (s seq))
Method: filter ((fn function) (s seq))
Method: filter ((pred symbol) (m map))
Method: filter ((pred function) (m map))
Method: filter ((pred bag) (b bag))
Method: filter ((pred set) (b bag))
Method: filter ((pred map) (b bag))
Method: filter ((pred symbol) (b bag))
Method: filter ((pred function) (b bag))
Method: filter ((pred bag) (s set))
Method: filter ((pred set) (s set))
Method: filter ((pred map) (s set))
Method: filter ((pred symbol) (s set))
Method: filter ((pred function) (s set))
Method: filter (fn (s sequence))
Generic Function: filter-pairs (fn collection)

Just like ‘filter’ except that if invoked on a bag, ‘fn’ (which must be a Lisp function) is called with two arguments for each pair, the member and the multiplicity.

Package

fset.

Source

fset.lisp.

Methods
Method: filter-pairs ((pred symbol) (b bag))
Method: filter-pairs ((pred function) (b bag))
Method: filter-pairs (fn collection)
Generic Function: find (item collection &key key test start end from-end test-not)

If ‘collection’ is a Lisp sequence, this simply calls ‘cl:find’. On an FSet collection, the default for ‘test’ is ‘equal?’; the ‘:test-not’ keyword is not accepted; and the ‘:start’, ‘:end’, and ‘:from-end’ keywords are accepted only if ‘collection’ is a seq. Also, on a map, this scans the domain; on success, it returns the corresponding range element as the second value.

Package

fset.

Source

fset.lisp.

Methods
Method: find (item (s seq) &key key test start end from-end)
Method: find (item (m map) &key key test)
Method: find (item (b bag) &key key test)
Method: find (item (s set) &key key test)
Method: find (item (s sequence) &rest keyword-args &key key test test-not start end from-end)
Generic Function: find-if (pred collection &key key start end from-end)

If ‘collection’ is a Lisp sequence, this simply calls ‘cl:find-if’. On an FSet collection, the ‘:start’, ‘:end’, and ‘:from-end’ keywords are accepted only if ‘collection’ is a seq. Also, on a map, this scans the domain; on success, it returns the corresponding range element as the second value.

Package

fset.

Source

fset.lisp.

Methods
Method: find-if (pred (s seq) &key key start end from-end)
Method: find-if (pred (m map) &key key)
Method: find-if (pred (b bag) &key key)
Method: find-if (pred (s set) &key key)
Method: find-if (pred (s sequence) &rest keyword-args &key key start end from-end)
Generic Function: find-if-not (pred collection &key key start end from-end)

If ‘collection’ is a Lisp sequence, this simply calls ‘cl:find-if-not’.
On an FSet collection, the ‘:start’, ‘:end’, and ‘:from-end’ keywords are accepted only if ‘collection’ is a seq. Also, on a map, this scans the domain; on success, it returns the corresponding range element as the second value.

Package

fset.

Source

fset.lisp.

Methods
Method: find-if-not (pred (s seq) &key key start end from-end)
Method: find-if-not (pred (m map) &key key)
Method: find-if-not (pred (b bag) &key key)
Method: find-if-not (pred (s set) &key key)
Method: find-if-not (pred (s sequence) &rest keyword-args &key key start end from-end)
Generic Function: first (seq)

Returns the first element of ‘seq’, i.e., element 0. This has a back- compatibility method for lists, and adds one for CL sequences generally.

Package

fset.

Source

fset.lisp.

Methods
Method: first ((s wb-seq))
Method: first ((s sequence))
Method: first ((s list))
Generic Function: forward-key (reg from-key to-key)
Package

fset.

Methods
Method: forward-key ((reg query-registry) from-key to-key)

Returns a new query-registry in which all queries whose patterns used ‘from-key’ (in an instantiated position) now use ‘to-key’ in that position instead.

Source

relations.lisp.

Generic Function: greatest (collection)

On a set, returns two values: the greatest member of the set and
true; on a bag, returns three values: the greatest member of the bag, its multiplicity, and true; on a map, also returns three values: the greatest key of the map, its value, and true. If there is not a unique greatest member, chooses one of the greatest members arbitrarily. Returns ‘nil’ if the collection is empty.

Package

fset.

Source

fset.lisp.

Methods
Method: greatest ((br wb-2-relation))
Source

relations.lisp.

Method: greatest ((m wb-map))
Method: greatest ((m wb-bag))
Method: greatest ((s wb-set))
Generic Function: image (fn collection)

Returns a new collection containing the result of applying ‘fn’ to each member of ‘collection’, which may be a set, bag, or seq. In the bag case, the multiplicity of each member of the result is the sum of the multiplicities of the values that ‘fn’ maps to it. As well as a Lisp function, ‘fn’ can be a map, or a set (which is treated as mapping its members to true and everything else to false). ‘collection’ can also be a map, in which case ‘fn’ must be a Lisp function of two arguments that returns two values (the map-default of the result is that of ‘collection’); also see ‘compose’.

Package

fset.

Source

fset.lisp.

Methods
Method: image ((key tuple-key) (s seq))
Source

tuples.lisp.

Method: image ((key tuple-key) (s set))
Source

tuples.lisp.

Method: image ((fn bag) (s seq))
Method: image ((fn set) (s seq))
Method: image ((fn map) (s seq))
Method: image ((fn symbol) (s seq))
Method: image ((fn function) (s seq))
Method: image ((fn symbol) (m map))
Method: image ((fn function) (m map))
Method: image ((fn bag) (b bag))
Method: image ((fn set) (b bag))
Method: image ((fn map) (b bag))
Method: image ((fn symbol) (b bag))
Method: image ((fn function) (b bag))
Method: image ((fn bag) (s set))
Method: image ((fn set) (s set))
Method: image ((fn map) (s set))
Method: image ((fn symbol) (s set))
Method: image ((fn function) (s set))
Method: image ((fn set) (l list))
Method: image ((fn map) (l list))
Method: image ((fn symbol) (l list))
Method: image ((fn function) (l list))
Generic Function: insert (seq idx val)

Returns a new sequence like ‘seq’ but with ‘val’ inserted at ‘idx’ (the seq is extended in either direction if needed prior to the insertion; previously uninitialized indices are filled with the seq’s default).

Package

fset.

Source

fset.lisp.

Methods
Method: insert ((s wb-seq) idx val)
Generic Function: intersection (set-or-bag1 set-or-bag2 &key test test-not)

Returns the intersection of the two sets/bags. The result is a bag
if both arguments are bags; otherwise a set. The intersection of two bags is the bag whose multiplicity, for any value, is the minimum of its multiplicities in the two argument bags.

Package

fset.

Source

fset.lisp.

Methods
Method: intersection ((bs1 bounded-set) (bs2 bounded-set) &key)
Source

bounded-sets.lisp.

Method: intersection ((s set) (cs complement-set) &key)
Source

complement-sets.lisp.

Method: intersection ((cs complement-set) (s set) &key)
Source

complement-sets.lisp.

Method: intersection ((cs1 complement-set) (cs2 complement-set) &key)
Source

complement-sets.lisp.

Method: intersection ((br1 wb-2-relation) (br2 wb-2-relation) &key)
Source

relations.lisp.

Method: intersection ((s0 interval-set) (s1 interval-set) &key)
Source

interval.lisp.

Method: intersection ((b wb-bag) (s wb-set) &key)
Method: intersection ((s wb-set) (b wb-bag) &key)
Method: intersection ((s1 wb-bag) (s2 wb-bag) &key)
Method: intersection ((s1 wb-set) (s2 wb-set) &key)
Method: intersection ((ls1 list) (ls2 list) &rest keyword-args &key test test-not)
Generic Function: inverse (2-relation)

The inverse of a binary relation.

Package

fset.

Source

relations.lisp.

Methods
Method: inverse ((br wb-2-relation))
Generic Function: iterator (collection &key pairs?)

Returns an iterator for the collection. (These are stateful iterators and
are not thread-safe; if you want a pure iterator, your best bet is to ‘convert’ the collection to a list.) The iterator is a closure of one argument; given ‘:done?’, it returns true iff the iterator is exhausted; given ‘:more?’, it returns true iff the iterator is _not_ exhausted. Given ‘:get’, if the iterator is not exhausted, it returns the next element (or pair, for a map, as two values), with the second value (third, for a map) being true, and advances one element; if it is exhausted, it returns two ‘nil’ values (three, for a map).

Package

fset.

Source

fset.lisp.

Methods
Method: iterator ((rel wb-2-relation) &key)
Source

relations.lisp.

Method: iterator ((s wb-seq) &key)
Method: iterator ((m wb-map) &key)
Method: iterator ((b wb-bag) &key pairs?)
Method: iterator ((s wb-set) &key)
Method: iterator ((seq sequence) &key)
Method: iterator ((str string) &key)
Method: iterator ((vec vector) &key)
Method: iterator ((ls list) &key)
Generic Function: join (relation-a column-a relation-b column-b)

A relational equijoin, matching up ‘column-a’ of ‘relation-a’ with ‘column-b’ of ‘relation-b’. For a binary relation, the columns are named 0 (domain) and 1 (range).

Package

fset.

Source

relations.lisp.

Methods
Method: join ((bra wb-2-relation) cola (brb wb-2-relation) colb)
Generic Function: last (seq)

Returns the last element of ‘seq’, i.e., element ‘(1- (size seq))’. This has methods for CL lists and sequences that are NOT COMPATIBLE with ‘cl:last’. FSet exports ‘lastcons’ as an arguably better name for the functionality of ‘cl:last’.

Package

fset.

Source

fset.lisp.

Methods
Method: last ((s wb-seq))
Method: last ((s sequence))
Method: last ((s list))
Generic Function: least (collection)

On a set, returns two values: the smallest member of the set and
true; on a bag, returns three values: the smallest member of the bag, its multiplicity, and true; on a map, also returns three values: the smallest key of the map, its value, and true. If there is not a unique smallest member, chooses one of the smallest members arbitrarily. Returns ‘nil’ if the collection is empty.

Package

fset.

Source

fset.lisp.

Methods
Method: least ((br wb-2-relation))
Source

relations.lisp.

Method: least ((m wb-map))
Method: least ((b wb-bag))
Method: least ((s wb-set))
Generic Function: less (collection value1 &optional value2)

On a set, removes ‘value1’ from it if present, returning the updated set. On a bag, removes ‘value2’ occurrences of ‘value1’ if present, returning the updated bag; ‘value2’ defaults to 1. On a map, removes the pair whose key is ‘value1’, if present, returning the updated map. On a seq, removes the element at index ‘value1’, if that index is in bounds, and shifts subsequent elements down, returning the updated seq.

Package

fset.

Source

fset.lisp.

Methods
Method: less ((bs1 bounded-set) x &optional arg2)
Source

bounded-sets.lisp.

Method: less ((cs complement-set) x &optional arg2)
Source

complement-sets.lisp.

Method: less ((rel wb-list-relation) tuple &optional arg2)
Source

relations.lisp.

Method: less ((br wb-2-relation) x &optional y)
Source

relations.lisp.

Method: less ((s interval-set) (iv interval) &optional arg2)
Source

interval.lisp.

Method: less ((s wb-seq) idx &optional arg2)
Method: less ((m wb-map) key &optional arg2)
Method: less ((b wb-bag) value &optional multiplicity)
Method: less ((s wb-set) value &optional arg2)
Generic Function: less-first (seq)

Returns the subsequence of ‘seq’ from element 1 through the end.

Package

fset.

Source

fset.lisp.

Methods
Method: less-first ((s wb-seq))
Generic Function: less-last (seq)

Returns the subsequence of ‘seq’ from element 0 through the next-to-last element.

Package

fset.

Source

fset.lisp.

Methods
Method: less-last ((s wb-seq))
Generic Function: less-query (reg pattern metapattern query)
Package

fset.

Methods
Method: less-query ((reg query-registry) (pattern list) (metapattern list) query)
Source

relations.lisp.

Generic Function: lookup (collection key)

If ‘collection’ is a map, returns the value to which ‘key’ is mapped. If ‘collection’ is a seq, takes ‘key’ as an index and returns the corresponding member (0-origin, of course). If ‘collection’ is a set or bag that contains a member equal to ‘key’, returns true and the member as two values, else false and ‘nil’; this is useful for canonicalization.

Package

fset.

Source

fset.lisp.

Setf expander for this generic function

(setf lookup).

Methods
Method: lookup ((reg query-registry) tuple)

Returns all queries in ‘reg’ whose patterns match ‘tuple’.

Source

relations.lisp.

Method: lookup ((br wb-2-relation) x)

Returns the set of values that the relation pairs ‘x’ with.

Source

relations.lisp.

Method: lookup ((tuple tuple) (key tuple-key))
Source

tuples.lisp.

Method: lookup ((s sequence) (idx integer))
Method: lookup ((s wb-seq) key)
Method: lookup ((m wb-map) key)
Method: lookup ((b wb-bag) x)
Method: lookup ((s wb-set) key)
Generic Function: lookup-inv (2-relation y)

Does an inverse lookup on a binary relation.

Package

fset.

Source

relations.lisp.

Methods
Method: lookup-inv ((br wb-2-relation) y)
Generic Function: lookup-multi (reg set-tuple)
Package

fset.

Methods
Method: lookup-multi ((reg query-registry) set-tuple)

Here ‘set-tuple’ contains a set of values in each position. Returns all queries in ‘reg’ whose patterns match any member of the cartesian product of the sets.

Source

relations.lisp.

Generic Function: lookup-multi-restricted (reg set-tuple keys)
Package

fset.

Methods
Method: lookup-multi-restricted ((reg query-registry) set-tuple keys)

Here ‘set-tuple’ contains a set of values in each position. Returns all queries in ‘reg’ whose patterns match any member of the cartesian product of the sets and which use a member of ‘keys’ in their patterns.

Source

relations.lisp.

Generic Function: lookup-restricted (reg tuple key)
Package

fset.

Methods
Method: lookup-restricted ((reg query-registry) tuple key)

Returns all queries in ‘reg’ whose patterns match ‘tuple’ and which use ‘key’ (in an instantiated position) in their patterns.

Source

relations.lisp.

Generic Function: map-difference-2 (map1 map2)

Returns, as two values: a map containing all the pairs that are in ‘map1’ but not ‘map2’, with the same default as ‘map1’; and one containing all the pairs that are in ‘map2’ but not ‘map1’, with the same default as ‘map2’.

Package

fset.

Source

fset.lisp.

Methods
Method: map-difference-2 ((map1 wb-map) (map2 wb-map))
Generic Function: map-intersection (map1 map2 &optional val-fn)

Returns a map containing all the keys that are in the domains of both ‘map1’ and ‘map2’, where the value for each key is the result of calling ‘val-fn’ on the value from ‘map1’ and the value from ‘map2’. ‘val-fn’ defaults to simply returning its second argument, so the entries in ‘map2’ simply shadow those in ‘map1’. The default for the new map is the result of calling ‘val-fn’ on the defaults for the two maps (so be sure it can take these values).

Package

fset.

Source

fset.lisp.

Methods
Method: map-intersection ((map1 wb-map) (map2 wb-map) &optional val-fn)
Generic Function: map-union (map1 map2 &optional val-fn)

Returns a map containing all the keys of ‘map1’ and ‘map2’, where the value for each key contained in only one map is the value from that map, and the value for each key contained in both maps is the result of calling ‘val-fn’ on the value from ‘map1’ and the value from ‘map2’. ‘val-fn’ defaults to simply returning its second argument, so the entries in ‘map2’ simply shadow those in ‘map1’. The default for the new map is the result of calling ‘val-fn’ on the defaults for the two maps (so be sure it can take these values).

Package

fset.

Source

fset.lisp.

Methods
Method: map-union ((map1 wb-map) (map2 wb-map) &optional val-fn)
Generic Function: multiplicity (bag x)

Returns the multiplicity of ‘x’ in the bag.

Package

fset.

Source

fset.lisp.

Methods
Method: multiplicity ((s set) x)
Method: multiplicity ((b wb-bag) x)
Generic Function: partition (pred collection)

Returns two values, (filter fn collection) and (filter (cl:complement fn) collection).

Package

fset.

Source

fset.lisp.

Methods
Method: partition ((fn bag) (s seq))
Method: partition ((fn set) (s seq))
Method: partition ((fn map) (s seq))
Method: partition ((fn symbol) (s seq))
Method: partition ((fn function) (s seq))
Method: partition ((pred map) (s set))
Method: partition ((pred symbol) (s set))
Method: partition ((pred function) (s set))
Method: partition ((pred function) (ls list))
Method: partition ((pred symbol) (ls list))
Generic Function: position (item collection &key key test start end from-end test-not)

If ‘collection’ is a Lisp sequence, this simply calls ‘cl:position’. On an FSet seq, the default for ‘test’ is ‘equal?’, and the ‘:test-not’ keyword is not accepted.

Package

fset.

Source

fset.lisp.

Methods
Method: position (item (s seq) &key key test start end from-end)
Method: position (item (s sequence) &rest keyword-args &key key test test-not start end from-end)
Generic Function: position-if (pred collection &key key start end from-end)

If ‘collection’ is a Lisp sequence, this simply calls ‘cl:position-if’. Also works on an FSet seq.

Package

fset.

Source

fset.lisp.

Methods
Method: position-if (pred (s seq) &key key start end from-end)
Method: position-if (pred (s sequence) &rest keyword-args &key key start end from-end)
Generic Function: position-if-not (pred collection &key key start end from-end)

If ‘collection’ is a Lisp sequence, this simply calls ‘cl:position-if-not’. Also works on an FSet seq.

Package

fset.

Source

fset.lisp.

Methods
Method: position-if-not (pred (s seq) &key key start end from-end)
Method: position-if-not (pred (s sequence) &rest keyword-args &key key start end from-end)
Generic Function: query (relation pattern metapattern)

Along with the relation, takes two lists, of equal length less than
or equal to the arity, called the ‘pattern’ and ‘metapattern’; returns a set of tuples satisfying the query. For each position, if the metapattern contains ‘nil’, the query is not constrained by that position (the corresponding position in the pattern is ignored); if the metapattern contains ‘t’ or ‘:single’, then the result set contains only those tuples with the same value in that position as the pattern has. The difference between ‘t’ and ‘:single’ has to do with indexing. For each metapattern that is actually used, an index is constructed if not previously present, and then is maintained incrementally. If the metapattern has ‘t’ in a location, the resulting index will contain all values for that location; if it has ‘:single’, the resulting index will contain only those values that have actually appeared in a query pattern with this metapattern.

Package

fset.

Source

relations.lisp.

Methods
Method: query ((rel wb-list-relation) (pattern list) (metapattern list))
Generic Function: query-multi (rel pattern metapattern)

Like ‘query’ (q.v.), except that ‘pattern’ is a list of sets of values rather than a list of values. Returns all tuples in the relation for which each value is a member of the corresponding set in the pattern. ‘:single’ in the metapattern is not accepted.

Package

fset.

Source

relations.lisp.

Methods
Method: query-multi ((rel wb-list-relation) (pattern list) (metapattern list))
Generic Function: range (map)

Returns the range of the map, that is, the set of all values to which keys are mapped by the map.

Package

fset.

Source

fset.lisp.

Methods
Method: range ((br wb-2-relation))
Source

relations.lisp.

Method: range ((s wb-seq))
Method: range ((m map))
Generic Function: range-contains? (collection x)

Returns true iff the range of the map or seq contains ‘x’. (The range of a seq is the set of members.) Note that this requires a linear search.

Package

fset.

Source

fset.lisp.

Methods
Method: range-contains? ((s seq) x)
Method: range-contains? ((m wb-map) x)
Generic Function: rank (collection value)

If ‘collection’ is a set or bag that contains ‘value’, returns the rank of ‘value’ in the ordering defined by ‘compare’, and a true second value. If ‘collection’ is a map whose domain contains ‘value’, returns the rank of ‘value’ in the domain of the map, and a true second value. If ‘value’ is not in the collection, the second value is false, and the first value is the rank of the greatest member of the collection less than ‘value’ (if any; otherwise -1). Note that if there are values/keys that are unequal but equivalent to ‘value’, an arbitrary order will be imposed on them for this purpose; but another collection that is ‘equal?’ but not ‘eq’ to this one will in general order them differently. Also, on a bag, multiplicities are ignored for this purpose.

Package

fset.

Source

fset.lisp.

Methods
Method: rank ((s wb-map) x)
Method: rank ((s wb-bag) x)
Method: rank ((s wb-set) x)
Generic Function: reduce (fn collection &key key initial-value start end from-end)

If ‘collection’ is a Lisp sequence, this simply calls ‘cl:reduce’ (q.v.). On an FSet collection, the ‘:start’, ‘:end’, and ‘:from-end’ keywords are accepted only if ‘collection’ is a seq.

Package

fset.

Source

fset.lisp.

Methods
Method: reduce ((fn symbol) (s seq) &key key initial-value start end from-end)
Method: reduce ((fn function) (s seq) &key key initial-value start end from-end)
Method: reduce ((fn symbol) (m map) &key key initial-value)
Method: reduce ((fn function) (m map) &key key initial-value)
Method: reduce ((fn symbol) (b bag) &key key initial-value)
Method: reduce ((fn function) (b bag) &key key initial-value)
Method: reduce ((fn symbol) (s set) &key key initial-value)
Method: reduce ((fn function) (s set) &key key initial-value)
Method: reduce (fn (s sequence) &rest keyword-args &key key initial-value start end from-end)
Generic Function: remove (item collection &key key test start end from-end count)

If ‘collection’ is a Lisp sequence, this simply calls ‘cl:remove’. On an FSet seq, the default for ‘test’ is ‘equal?’, and the ‘:test-not’ keyword is not accepted.

Package

fset.

Source

fset.lisp.

Methods
Method: remove (item (s seq) &key key test start end from-end count)
Method: remove (item (s sequence) &rest keyword-args &key key test start end from-end count)
Generic Function: remove-if (pred collection &key key start end from-end count)

If ‘collection’ is a Lisp sequence, this simply calls ‘cl:remove-if’. Also works on an FSet seq; but see ‘filter’.

Package

fset.

Source

fset.lisp.

Methods
Method: remove-if (pred (s seq) &key key start end from-end count)
Method: remove-if (pred (s sequence) &rest keyword-args &key key start end from-end count)
Generic Function: remove-if-not (pred collection &key key start end from-end count)

If ‘collection’ is a Lisp sequence, this simply calls ‘cl:remove-if-not’. Also works on an FSet seq; but see ‘filter’.

Package

fset.

Source

fset.lisp.

Methods
Method: remove-if-not (pred (s seq) &key key start end from-end count)
Method: remove-if-not (pred (s sequence) &rest keyword-args &key key start end from-end count)
Generic Function: restrict (map set)

Returns a map containing only those pairs of ‘map’ whose keys are also in ‘set’.

Package

fset.

Source

fset.lisp.

Methods
Method: restrict ((tup tuple) (s set))
Source

tuples.lisp.

Method: restrict ((m wb-map) (s wb-set))
Generic Function: restrict-not (map set)

Returns a map containing only those pairs of ‘map’ whose keys are not in ‘set’.

Package

fset.

Source

fset.lisp.

Methods
Method: restrict-not ((tup tuple) (s set))
Source

tuples.lisp.

Method: restrict-not ((m wb-map) (s wb-set))
Generic Function: reverse (seq)

Returns ‘seq’ in reverse order.

Package

fset.

Source

fset.lisp.

Methods
Method: reverse ((s wb-seq))
Method: reverse ((s sequence))
Generic Function: set-difference (set1 set2 &key test test-not)

Returns the set difference of set1 and set2, i.e., the set containing every member of ‘set1’ that is not in ‘set2’.

Package

fset.

Source

fset.lisp.

Methods
Method: set-difference ((bs1 bounded-set) (bs2 bounded-set) &key)
Source

bounded-sets.lisp.

Method: set-difference ((s set) (cs complement-set) &key)
Source

complement-sets.lisp.

Method: set-difference ((cs complement-set) (s set) &key)
Source

complement-sets.lisp.

Method: set-difference ((cs1 complement-set) (cs2 complement-set) &key)
Source

complement-sets.lisp.

Method: set-difference ((s0 interval-set) (s1 interval-set) &key)
Source

interval.lisp.

Method: set-difference ((s1 wb-set) (s2 wb-set) &key)
Method: set-difference ((ls1 list) (ls2 list) &rest keyword-args &key test test-not)
Generic Function: set-difference-2 (set1 set2)

Returns ‘set1 - set2’ and ‘set2 - set1’ as two values.

Package

fset.

Source

fset.lisp.

Methods
Method: set-difference-2 ((s1 wb-set) (s2 wb-set))
Generic Function: set-size (bag)

Returns the number of unique members in the bag.

Package

fset.

Source

fset.lisp.

Methods
Method: set-size ((b wb-bag))
Method: set-size ((s wb-set))
Generic Function: size (collection)

Returns the number of members in a set, seq, or bag, or the number of pairs in a map. The size of a bag is the sum of the multiplicities.

Package

fset.

Source

fset.lisp.

Methods
Method: size ((bs bounded-set))
Source

bounded-sets.lisp.

Method: size ((cs complement-set))
Source

complement-sets.lisp.

Method: size ((rel wb-list-relation))
Source

relations.lisp.

Method: size ((br wb-2-relation))
Source

relations.lisp.

Method: size ((s interval-set))

The number of intervals in the set.

Source

interval.lisp.

Method: size ((s sequence))
Method: size ((s wb-seq))
Method: size ((m wb-map))
Method: size ((b wb-bag))
Method: size ((s wb-set))
Generic Function: sort (seq pred &key key)

Returns ‘seq’ sorted by ‘pred’, a function of two arguments; if ‘key’ is supplied, it is a function of one argument that is applied to the elements of ‘seq’ before they are passed to ‘pred’. The sort is not guaranteed to be stable. The method for CL sequences copies the sequence first, unlike ‘cl:sort’.

Package

fset.

Source

fset.lisp.

Methods
Method: sort ((s wb-seq) pred &key key)
Method: sort ((s set) pred &key key)
Method: sort ((s sequence) pred &key key)
Generic Function: splice (seq idx subseq)

Returns a new sequence like ‘seq’ but with the elements of ‘subseq’ inserted
at ‘idx’ (the seq is extended in either direction if needed prior to the insertion; previously uninitialized indices are filled with the seq’s default).

Package

fset.

Source

fset.lisp.

Methods
Method: splice ((s wb-seq) idx subseq)
Generic Function: split-above (s value)
Package

fset.

Methods
Method: split-above ((s wb-set) value)
Source

fset.lisp.

Generic Function: split-below (s value)
Package

fset.

Methods
Method: split-below ((s wb-set) value)
Source

fset.lisp.

Generic Function: split-from (s value)
Package

fset.

Methods
Method: split-from ((s wb-set) value)
Source

fset.lisp.

Generic Function: split-through (s value)
Package

fset.

Methods
Method: split-through ((s wb-set) value)
Source

fset.lisp.

Generic Function: stable-sort (seq pred &key key)

Returns ‘seq’ sorted by ‘pred’, a function of two arguments; if ‘key’ is supplied, it is a function of one argument that is applied to the elements of ‘seq’ before they are passed to ‘pred’. The sort is guaranteed to be stable. The method for CL sequences copies the sequence first, unlike ‘cl:stable-sort’.

Package

fset.

Source

fset.lisp.

Methods
Method: stable-sort ((s wb-seq) pred &key key)
Method: stable-sort ((s set) pred &key key)
Method: stable-sort ((s sequence) pred &key key)
Generic Function: subbag? (sub super)

Returns true iff ‘sub’ is a subbag of ‘super’, that is, for every member of ‘sub’, ‘super’ contains the same value with at least the same multiplicity.

Package

fset.

Source

fset.lisp.

Methods
Method: subbag? ((b wb-bag) (s wb-set))
Method: subbag? ((s wb-set) (b wb-bag))
Method: subbag? ((b1 wb-bag) (b2 wb-bag))
Generic Function: subseq (seq start &optional end)

Returns the subsequence of ‘seq’ from ‘start’ (inclusive) to ‘end’ (exclusive), where ‘end’ defaults to ‘(size seq)’.

Package

fset.

Source

fset.lisp.

Methods
Method: subseq ((s wb-seq) start &optional end)
Method: subseq ((s sequence) start &optional end)
Generic Function: subset? (sub super)

Returns true iff ‘sub’ is a subset of ‘super’.

Package

fset.

Source

fset.lisp.

Methods
Method: subset? ((bs1 bounded-set) (bs2 bounded-set))
Source

bounded-sets.lisp.

Method: subset? ((s set) (cs complement-set))
Source

complement-sets.lisp.

Method: subset? ((cs complement-set) (s set))
Source

complement-sets.lisp.

Method: subset? ((cs1 complement-set) (cs2 complement-set))
Source

complement-sets.lisp.

Method: subset? ((s1 wb-set) (s2 wb-set))
Generic Function: substitute (newitem olditem collection &key key test start end from-end count)

If ‘collection’ is a Lisp sequence, this simply calls ‘cl:substitute’. On an FSet seq, the default for ‘test’ is ‘equal?’, and the ‘:test-not’ keyword is not accepted.

Package

fset.

Source

fset.lisp.

Methods
Method: substitute (newitem olditem (s seq) &key key test start end from-end count)
Method: substitute (newitem olditem (s sequence) &rest keyword-args &key key test start end from-end count)
Generic Function: substitute-if (newitem pred collection &key key start end from-end count)

If ‘collection’ is a Lisp sequence, this simply calls ‘cl:substitute-if’. Also works on an FSet seq.

Package

fset.

Source

fset.lisp.

Methods
Method: substitute-if (newitem pred (s seq) &key key start end from-end count)
Method: substitute-if (newitem pred (s sequence) &rest keyword-args &key key start end from-end count)
Generic Function: substitute-if-not (newitem pred collection &key key start end from-end count)

If ‘collection’ is a Lisp sequence, this simply calls ‘cl:substitute-if-not’. Also works on an FSet seq.

Package

fset.

Source

fset.lisp.

Methods
Method: substitute-if-not (newitem pred (s seq) &key key start end from-end count)
Method: substitute-if-not (newitem pred (s sequence) &rest keyword-args &key key start end from-end count)
Generic Function: tuple-merge (tuple1 tuple2 &optional val-fn)

Returns a new tuple containing all the keys of ‘tuple1’ and ‘tuple2’, where the value for each key contained in only one tuple is the value from that tuple, and the value for each key contained in both tuples is the result of calling ‘val-fn’ on the value from ‘tuple1’ and the value from ‘tuple2’. ‘val-fn’ defaults to simply returning its third argument, so the entries in ‘tuple2’ simply shadow those in ‘tuple1’.

Package

fset.

Source

tuples.lisp.

Methods
Method: tuple-merge ((tup1 tuple) (tup2 tuple) &optional val-fn)
Generic Function: union (set-or-bag1 set-or-bag2 &key test test-not)

Returns the union of the two sets/bags. The result is a set if both arguments are sets; otherwise a bag. The union of two bags is a bag whose multiplicity, for any value, is the maximum of its multiplicities in the two argument bags.

Package

fset.

Source

fset.lisp.

Methods
Method: union ((bs1 bounded-set) (bs2 bounded-set) &key)
Source

bounded-sets.lisp.

Method: union ((s set) (cs complement-set) &key)
Source

complement-sets.lisp.

Method: union ((cs complement-set) (s set) &key)
Source

complement-sets.lisp.

Method: union ((cs1 complement-set) (cs2 complement-set) &key)
Source

complement-sets.lisp.

Method: union ((br1 wb-2-relation) (br2 wb-2-relation) &key)
Source

relations.lisp.

Method: union ((s0 interval-set) (s1 interval-set) &key)
Source

interval.lisp.

Method: union ((b wb-bag) (s wb-set) &key)
Method: union ((s wb-set) (b wb-bag) &key)
Method: union ((b1 wb-bag) (b2 wb-bag) &key)
Method: union ((s1 wb-set) (s2 wb-set) &key)
Method: union ((ls1 list) (ls2 list) &rest keyword-args &key test test-not)
Generic Function: with (collection value1 &optional value2)

On a set, adds ‘value1’ to it, returning the updated set. On a bag, adds ‘value2’ occurrences of ‘value1’, returning the updated bag; ‘value2’ defaults to 1. On a map, adds a mapping from ‘value1’ (the key) to ‘value2’, returning the updated map. On a seq, replaces the element at index ‘value1’ with ‘value2’, returning the updated seq (the seq is extended in either direction if needed; previously uninitialized indices are filled with the seq’s default).

Package

fset.

Source

fset.lisp.

Methods
Method: with ((bs1 bounded-set) x &optional arg2)
Source

bounded-sets.lisp.

Method: with ((cs complement-set) x &optional arg2)
Source

complement-sets.lisp.

Method: with ((rel wb-list-relation) tuple &optional arg2)
Source

relations.lisp.

Method: with ((br wb-2-relation) x &optional y)
Source

relations.lisp.

Method: with ((s interval-set) (iv interval) &optional arg2)
Source

interval.lisp.

Method: with ((tuple tuple) (key tuple-key) &optional value)
Source

tuples.lisp.

Method: with ((s wb-seq) idx &optional val)
Method: with ((m wb-map) key &optional value)
Method: with ((b wb-bag) value &optional multiplicity)
Method: with ((s wb-set) value &optional arg2)
Generic Function: with-default (collection new-default)

Returns a new map or seq with the same contents as ‘collection’ but whose default is now ‘new-default’.

Package

fset.

Source

fset.lisp.

Methods
Method: with-default ((s wb-seq) new-default)
Method: with-default ((m wb-map) new-default)
Generic Function: with-first (seq val)

Returns ‘seq’ with ‘val’ prepended, that is, ‘val’ is element 0 of the result, and the elements of ‘seq’ appear starting at index 1.

Package

fset.

Source

fset.lisp.

Methods
Method: with-first ((s wb-seq) val)
Generic Function: with-last (seq val)

Returns ‘seq’ with ‘val’ appended, that is, ‘val’ is element ‘(size seq)’ of the result.

Package

fset.

Source

fset.lisp.

Methods
Method: with-last ((s wb-seq) val)
Generic Function: with-query (reg pattern metapattern query &optional arity)
Package

fset.

Methods
Method: with-query ((reg query-registry) (pattern list) (metapattern list) query &optional arity)
Source

relations.lisp.


6.1.6 Standalone methods

Method: adjust-sequence ((obj my-sequence) len &rest args)
Package

sb-sequence.

Source

testing.lisp.

Method: (setf elt) ((obj my-sequence) index)
Package

sb-sequence.

Source

testing.lisp.

Method: elt ((obj my-sequence) index)
Package

sb-sequence.

Source

testing.lisp.

Method: length ((obj my-sequence))
Package

sb-sequence.

Source

testing.lisp.

Method: make-sequence-like ((obj my-sequence) len &rest args)
Package

sb-sequence.

Source

testing.lisp.

Method: print-object ((object wb-map) stream)
Source

fset.lisp.

Method: print-object ((object wb-list-relation) stream)
Source

relations.lisp.

Method: print-object ((object bounded-set) stream)
Source

bounded-sets.lisp.

Method: print-object ((object wb-bag) stream)
Source

fset.lisp.

Method: print-object ((object dyn-tuple) stream)
Source

tuples.lisp.

Method: print-object ((object wb-set) stream)
Source

fset.lisp.

Method: print-object ((object wb-2-relation) stream)
Source

relations.lisp.

Method: print-object ((object wb-seq) stream)
Source

fset.lisp.

Method: print-object ((object wb-set-tree-node) stream)
Source

wb-trees.lisp.

Method: print-object ((object wb-seq-tree-node) stream)
Source

wb-trees.lisp.

Method: print-object ((object complement-set) stream)
Source

complement-sets.lisp.

Method: print-object ((object tuple-key) stream)
Source

tuples.lisp.

Method: print-object ((object wb-map-tree-node) stream)
Source

wb-trees.lisp.

Method: print-object ((object wb-bag-tree-node) stream)
Source

wb-trees.lisp.

Method: print-object ((object interval-set) stream)
Source

interval.lisp.

Method: print-object ((object interval) stream)
Source

interval.lisp.


6.1.7 Structures

Structure: 2-relation

The abstract class for FSet binary relations. It is a structure class.

Package

fset.

Source

relations.lisp.

Direct superclasses

relation.

Direct subclasses

wb-2-relation.

Direct methods
Structure: bag

The abstract class for FSet functional bags (multisets). It is a structure class.

Package

fset.

Source

order.lisp.

Direct superclasses

collection.

Direct subclasses

wb-bag.

Direct methods
Structure: bounded-set

A "bounded set" is a subset (not necessarily proper) of a specified set, called the "universe". (Topologically, it is a set in the discrete topology on the universe.)

Package

fset.

Source

bounded-sets.lisp.

Direct superclasses

set.

Direct methods
Direct slots
Slot: universe
Readers

bounded-set-universe.

Writers

(setf bounded-set-universe).

Slot: set
Readers

bounded-set-set.

Writers

(setf bounded-set-set).

Slot: complement?
Readers

bounded-set-complement?.

Writers

(setf bounded-set-complement?).

Structure: collection

The root class of the FSet functional collections hierarchy. It is a structure class.

Package

fset.

Source

order.lisp.

Direct superclasses

structure-object.

Direct subclasses
Structure: dyn-tuple

A class of functional tuples represented as vectors with dynamically- reordered key vectors. This is the default implementation of tuples in FSet.

Package

fset.

Source

tuples.lisp.

Direct superclasses

tuple.

Direct methods
Direct slots
Slot: descriptor
Readers

dyn-tuple-descriptor.

Writers

(setf dyn-tuple-descriptor).

Slot: contents
Readers

dyn-tuple-contents.

Writers

(setf dyn-tuple-contents).

Structure: list-relation

The abstract class for FSet list relations. It is a structure class. A list relation is a general relation (i.e. of arbitrary arity >= 2) whose tuples are in list form.

Package

fset.

Source

relations.lisp.

Direct superclasses

relation.

Direct subclasses

wb-list-relation.

Structure: map

The abstract class for FSet functional maps. It is a structure class.

Package

fset.

Source

order.lisp.

Direct superclasses

collection.

Direct subclasses

wb-map.

Direct methods
Direct slots
Slot: default
Readers

map-default.

Writers

(setf map-default).

Structure: query-registry
Package

fset.

Source

relations.lisp.

Direct superclasses

structure-object.

Direct methods
Direct slots
Slot: arity
Readers

query-registry-arity.

Writers

(setf query-registry-arity).

Slot: indices
Readers

query-registry-indices.

Writers

(setf query-registry-indices).

Slot: key-index
Readers

query-registry-key-index.

Writers

(setf query-registry-key-index).

Structure: relation

The abstract class for FSet relations. It is a structure class.

Package

fset.

Source

relations.lisp.

Direct superclasses

collection.

Direct subclasses
Direct methods
Structure: seq

The abstract class for FSet functional seqs (sequences, but we use the short name to avoid confusion with ‘cl:sequence’). It is a structure class.

Package

fset.

Source

order.lisp.

Direct superclasses

collection.

Direct subclasses

wb-seq.

Direct methods
Direct slots
Slot: default
Readers

seq-default.

Writers

(setf seq-default).

Structure: set

The abstract class for FSet functional sets. It is a structure class.

Package

fset.

Source

order.lisp.

Direct superclasses

collection.

Direct subclasses
Direct methods
Structure: tuple

The abstract class for FSet functional tuples. It is a structure class.

Package

fset.

Source

order.lisp.

Direct superclasses

collection.

Direct subclasses

dyn-tuple.

Direct methods
Structure: wb-2-relation

A class of functional binary relations represented as pairs of weight- balanced binary trees. This is the default implementation of binary relations in FSet. The inverse is constructed lazily, and maintained incrementally once constructed.

Package

fset.

Source

relations.lisp.

Direct superclasses

2-relation.

Direct methods
Direct slots
Slot: size
Readers

wb-2-relation-size.

Writers

(setf wb-2-relation-size).

Slot: map0
Readers

wb-2-relation-map0.

Writers

(setf wb-2-relation-map0).

Slot: map1
Readers

wb-2-relation-map1.

Writers

(setf wb-2-relation-map1).

Structure: wb-bag

A class of functional bags (multisets) represented as weight-balanced binary trees. This is the default implementation of bags in FSet.

Package

fset.

Source

fset.lisp.

Direct superclasses

bag.

Direct methods
Direct slots
Slot: contents
Readers

wb-bag-contents.

Writers

(setf wb-bag-contents).

Structure: wb-list-relation

A class of functional relations of arbitrary arity >= 2, whose tuples are in list form.

Package

fset.

Source

relations.lisp.

Direct superclasses

list-relation.

Direct methods
Direct slots
Slot: arity
Readers

wb-list-relation-arity.

Writers

(setf wb-list-relation-arity).

Slot: tuples
Readers

wb-list-relation-tuples.

Writers

(setf wb-list-relation-tuples).

Slot: indices
Readers

wb-list-relation-indices.

Writers

(setf wb-list-relation-indices).

Structure: wb-map

A class of functional maps represented as weight-balanced binary trees. This is the default implementation of maps in FSet.

Package

fset.

Source

fset.lisp.

Direct superclasses

map.

Direct methods
Direct slots
Slot: contents
Readers

wb-map-contents.

Writers

(setf wb-map-contents).

Structure: wb-seq

A class of functional seqs (sequences, but we use the short name to avoid confusion with ‘cl:sequence’) represented as weight-balanced binary trees. This is the default implementation of seqs in FSet.

Package

fset.

Source

fset.lisp.

Direct superclasses

seq.

Direct methods
Direct slots
Slot: contents
Readers

wb-seq-contents.

Writers

(setf wb-seq-contents).

Structure: wb-set

A class of functional sets represented as weight-balanced binary trees. This is the default implementation of sets in FSet.

Package

fset.

Source

fset.lisp.

Direct superclasses

set.

Direct methods
Direct slots
Slot: contents
Readers

wb-set-contents.

Writers

(setf wb-set-contents).


6.1.8 Classes

Class: identity-ordering-mixin

A mixin class for classes whose instances will be used in FSet collections, and for which the appropriate equivalence relation is identity (‘eq’). This is the right choice for the vast majority of mutable classes.

Package

fset.

Source

order.lisp.

Direct subclasses

my-identity-ordered-obj.

Direct methods
Direct slots
Slot: serial-number
Initform

(atomic-incf fset::*sbcl-next-serial-number*)

Readers

serial-number.

Writers

(setf serial-number).


6.2 Internals


6.2.1 Constants

Constant: hedge-negative-infinity
Package

fset.

Source

wb-trees.lisp.

Constant: hedge-positive-infinity
Package

fset.

Source

wb-trees.lisp.

Constant: tuple-key-number-mask
Package

fset.

Source

port.lisp.

Constant: tuple-key-number-size

This limits the number of tuple-keys that can exist in a session.

Package

fset.

Source

port.lisp.

Constant: tuple-reorder-frequency

Controls how often we do tuple reordering. Must be 2^n - 1 for some n.

Package

fset.

Source

tuples.lisp.

Constant: tuple-value-chunk-bits
Package

fset.

Source

tuples.lisp.

Constant: tuple-value-chunk-size
Package

fset.

Source

tuples.lisp.

Constant: tuple-value-index-size

This limits the number of key/value pairs in any tuple.

Package

fset.

Source

port.lisp.

Constant: wb-tree-balance-factor
Package

fset.

Source

wb-trees.lisp.

Constant: wb-tree-precomputed-max-depths
Package

fset.

Source

wb-trees.lisp.


6.2.2 Special variables

Special Variable: *empty-wb-2-relation*
Package

fset.

Source

relations.lisp.

Special Variable: *empty-wb-bag*
Package

fset.

Source

fset.lisp.

Special Variable: *empty-wb-map*
Package

fset.

Source

fset.lisp.

Special Variable: *empty-wb-seq*
Package

fset.

Source

fset.lisp.

Special Variable: *empty-wb-set*
Package

fset.

Source

fset.lisp.

Special Variable: *fset-rereading-readtable*

A copy of the standard readtable with the rereading FSet reader macros installed. This readtable can be used to read structure printed by the FSet print functions.

Package

fset.

Source

reader.lisp.

Special Variable: *wb-tree-max-string-length*
Package

fset.

Source

wb-trees.lisp.

Special Variable: *wb-tree-max-vector-length*
Package

fset.

Source

wb-trees.lisp.

Special Variable: tuple-reorder-score-threshold

The reorder score that triggers a major reordering.

Package

fset.

Source

tuples.lisp.


6.2.3 Symbol macros

Symbol Macro: *memory-barrier-lock*
Package

fset.

Source

port.lisp.

Symbol Macro: +k0+
Package

fset.

Source

testing.lisp.

Symbol Macro: +k1+
Package

fset.

Source

testing.lisp.

Symbol Macro: +k2+
Package

fset.

Source

testing.lisp.

Symbol Macro: +k3+
Package

fset.

Source

testing.lisp.

Symbol Macro: +k4+
Package

fset.

Source

testing.lisp.

Symbol Macro: +k5+
Package

fset.

Source

testing.lisp.

Symbol Macro: +k6+
Package

fset.

Source

testing.lisp.

Symbol Macro: +k7+
Package

fset.

Source

testing.lisp.

Symbol Macro: +k8+
Package

fset.

Source

testing.lisp.

Symbol Macro: +k9+
Package

fset.

Source

testing.lisp.

Symbol Macro: +master-type-ordering+
Package

fset.

Source

order-macros.lisp.

Symbol Macro: +package-original-name+
Package

fset.

Source

order.lisp.

Symbol Macro: +tuple-desc-next-serial-number+
Package

fset.

Source

tuples.lisp.

Symbol Macro: +tuple-desc-next-serial-number-lock+
Package

fset.

Source

tuples.lisp.

Symbol Macro: +tuple-descriptor-map+
Package

fset.

Source

tuples.lisp.

Symbol Macro: +tuple-key-lock+
Package

fset.

Source

tuples.lisp.

Symbol Macro: +tuple-key-name-map+
Package

fset.

Source

tuples.lisp.

Symbol Macro: +tuple-key-seq+
Package

fset.

Source

tuples.lisp.

Symbol Macro: +tuple-random-value+
Package

fset.

Source

tuples.lisp.

Symbol Macro: +wb-tree-max-depths-with-values+
Package

fset.

Source

wb-trees.lisp.

Symbol Macro: +wb-tree-max-depths-without-values+
Package

fset.

Source

wb-trees.lisp.

Symbol Macro: tuple-keys
Package

fset.

Source

testing.lisp.


6.2.4 Macros

Macro: check-three-arguments (arg2? op type)
Package

fset.

Source

fset-macros.lisp.

Macro: check-two-arguments (arg2? op type)
Package

fset.

Source

fset-macros.lisp.

Macro: do-tuple-internal ((key-var value-var tuple-form &optional value-form) &body body)
Package

fset.

Source

tuples.lisp.

Macro: do-wb-bag-tree-pairs ((val-var count-var tree-form &optional value-form) &body body)

Iterates over the pairs of the bag, for each one binding ‘val-var’ to the value and ‘count-var’ to its member count.

Package

fset.

Source

wb-trees.lisp.

Macro: do-wb-map-tree-pairs ((key-var value-var tree-form &optional value-form) &body body)
Package

fset.

Source

wb-trees.lisp.

Macro: do-wb-seq-tree-members ((var tree-form &optional value-form) &body body)
Package

fset.

Source

wb-trees.lisp.

Macro: do-wb-seq-tree-members-gen ((var tree-form start-form end-form from-end-form &optional value-form) &body body)
Package

fset.

Source

wb-trees.lisp.

Macro: do-wb-set-tree-members ((var tree-form &optional value-form) &body body)
Package

fset.

Source

wb-trees.lisp.

Macro: gen (op &rest args)
Package

fset.

Source

port.lisp.

Macro: length-nv (x)
Package

fset.

Source

port.lisp.

Macro: read-memory-barrier ()
Package

fset.

Source

port.lisp.

Macro: tuple-window-size (nkeys*2)
Package

fset.

Source

tuples.lisp.

Macro: while (pred &body body)
Package

fset.

Source

port.lisp.

Macro: with-lock ((lock &key wait?) &body body)
Package

fset.

Source

port.lisp.

Macro: write-memory-barrier ()
Package

fset.

Source

port.lisp.


6.2.5 Compiler macros

Compiler Macro: update (fn coll &rest keys)
Package

fset.

Source

fset.lisp.


6.2.6 Ordinary functions

Function: #$-reader (stream subchar arg)
Package

fset.

Source

reader.lisp.

Function: #%-reader (stream subchar arg)
Package

fset.

Source

reader.lisp.

Function: #[-reader (stream subchar arg)
Package

fset.

Source

reader.lisp.

Function: #{-reader (stream subchar arg)
Package

fset.

Source

reader.lisp.

Function: #~-reader (stream subchar arg)
Package

fset.

Source

reader.lisp.

Function: 2-relation-fn-compose (rel fn)
Package

fset.

Source

relations.lisp.

Function: 2-relation-to-wb-map (br)
Package

fset.

Source

relations.lisp.

Function: 2-relation? (object)
Package

fset.

Source

relations.lisp.

Function: add-to-front (list &rest vals)
Package

fset.

Source

testing.lisp.

Function: alist-assign (al r v)
Package

fset.

Source

testing.lisp.

Function: alist-bag-combine (al1 al2 fn)
Package

fset.

Source

testing.lisp.

Function: alist-bag-difference (al1 al2)
Package

fset.

Source

testing.lisp.

Function: alist-bag-intersection (al1 al2)
Package

fset.

Source

testing.lisp.

Function: alist-bag-product (al1 al2)
Package

fset.

Source

testing.lisp.

Function: alist-bag-remove (al r)
Package

fset.

Source

testing.lisp.

Function: alist-bag-size (al)
Package

fset.

Source

testing.lisp.

Function: alist-bag-sum (al1 al2)
Package

fset.

Source

testing.lisp.

Function: alist-bag-union (al1 al2)
Package

fset.

Source

testing.lisp.

Function: alist-remove (al r)
Package

fset.

Source

testing.lisp.

Function: augmented-mp (pattern metapattern)

Returns a list, of the same length as the pattern, which is like the metapattern except that each ‘:single’ has been replaced by a cons of ‘:single’ and the corresponding pattern element.

Package

fset.

Source

relations.lisp.

Function: augmented-mp-matches? (augmented-mp tuple)
Package

fset.

Source

relations.lisp.

Function: bag-filter (pred b)
Package

fset.

Source

fset.lisp.

Function: bag-filter-pairs (pred b)
Package

fset.

Source

fset.lisp.

Function: bag-from-list (l from-type)
Package

fset.

Source

fset.lisp.

Function: bag-image (fn b)
Package

fset.

Source

fset.lisp.

Function: bag-reduce (fn b initial-value key init?)
Package

fset.

Source

fset.lisp.

Function: bag-value-size (value)

The number of values represented by ‘value’, which can be more than 1 if ‘key’ is an ‘Equivalent-Bag’.

Package

fset.

Source

wb-trees.lisp.

Function: base-char-p (x)
Package

fset.

Source

port.lisp.

Reader: bounded-set-complement? (instance)
Writer: (setf bounded-set-complement?) (instance)
Package

fset.

Source

bounded-sets.lisp.

Target Slot

complement?.

Reader: bounded-set-set (instance)
Writer: (setf bounded-set-set) (instance)
Package

fset.

Source

bounded-sets.lisp.

Target Slot

set.

Reader: bounded-set-universe (instance)
Writer: (setf bounded-set-universe) (instance)
Package

fset.

Source

bounded-sets.lisp.

Target Slot

universe.

Function: bounded-set? (object)
Package

fset.

Source

bounded-sets.lisp.

Function: coerce-to-function (s)
Package

fset.

Source

fset.lisp.

Function: coerce-to-function-or-equal? (s)
Package

fset.

Source

fset.lisp.

Function: compare-intervals (iv0 iv1)

Second value is true if the two abut. ‘:equal’ means they overlap.

Package

fset.

Source

interval.lisp.

Function: compare-lists-lexicographically (a b)
Package

fset.

Source

order.lisp.

Function: compare-strings (a b)
Package

fset.

Source

order.lisp.

Reader: complement-set-complement (instance)
Writer: (setf complement-set-complement) (instance)
Package

fset.

Source

complement-sets.lisp.

Target Slot

complement.

Function: complement-set? (object)
Package

fset.

Source

complement-sets.lisp.

Function: copy-equivalent-bag (instance)
Package

fset.

Source

wb-trees.lisp.

Function: copy-equivalent-map (instance)
Package

fset.

Source

wb-trees.lisp.

Function: copy-equivalent-set (instance)
Package

fset.

Source

wb-trees.lisp.

Function: copy-my-integer (instance)
Package

fset.

Source

testing.lisp.

Function: copy-query-registry (instance)
Package

fset.

Source

relations.lisp.

Function: copy-tuple-desc (instance)
Package

fset.

Source

tuples.lisp.

Function: copy-tuple-key (instance)
Package

fset.

Source

tuples.lisp.

Function: copy-wb-bag-tree-node (instance)
Package

fset.

Source

wb-trees.lisp.

Function: copy-wb-map-tree-node (instance)
Package

fset.

Source

wb-trees.lisp.

Function: copy-wb-seq-tree-node (instance)
Package

fset.

Source

wb-trees.lisp.

Function: copy-wb-set-tree-node (instance)
Package

fset.

Source

wb-trees.lisp.

Reader: dyn-tuple-contents (instance)
Writer: (setf dyn-tuple-contents) (instance)
Package

fset.

Source

tuples.lisp.

Target Slot

contents.

Reader: dyn-tuple-descriptor (instance)
Writer: (setf dyn-tuple-descriptor) (instance)
Package

fset.

Source

tuples.lisp.

Target Slot

descriptor.

Function: dyn-tuple? (object)
Package

fset.

Source

tuples.lisp.

Function: empty-interval-set ()
Package

fset.

Source

interval.lisp.

Reader: equivalent-bag-alist (instance)
Writer: (setf equivalent-bag-alist) (instance)
Package

fset.

Source

wb-trees.lisp.

Target Slot

alist.

Function: equivalent-bag-compare (val1 count1 val2 count2)

Compares two pairs where the key of either or both may be an ‘Equivalent-Bag’.

Package

fset.

Source

wb-trees.lisp.

Function: equivalent-bag-difference (val1 count1 val2 count2)
Package

fset.

Source

wb-trees.lisp.

Function: equivalent-bag-intersect (val1 count1 val2 count2)
Package

fset.

Source

wb-trees.lisp.

Function: equivalent-bag-product (val1 count1 val2 count2)
Package

fset.

Source

wb-trees.lisp.

Function: equivalent-bag-subbag? (val1 count1 val2 count2)
Package

fset.

Source

wb-trees.lisp.

Function: equivalent-bag-sum (val1 count1 val2 count2)
Package

fset.

Source

wb-trees.lisp.

Function: equivalent-bag-union (val1 count1 val2 count2)
Package

fset.

Source

wb-trees.lisp.

Function: equivalent-bag? (object)
Package

fset.

Source

wb-trees.lisp.

Reader: equivalent-map-alist (instance)
Writer: (setf equivalent-map-alist) (instance)
Package

fset.

Source

wb-trees.lisp.

Target Slot

alist.

Function: equivalent-map-compare (key1 val1 key2 val2 val-fn)

Compares two pairs where the key of either or both may be an ‘Equivalent-Map’.

Package

fset.

Source

wb-trees.lisp.

Function: equivalent-map-difference (key1 val1 key2 val2)

Both ‘key1’ and ‘key2’ may be single values (representing a single key/value pair) or ‘Equivalent-Map’s of key/value pairs. That is, if ‘key1’ is a ‘Equivalent-Map’, ‘val1’ is ignored, and similarly for ‘key2’ and ‘val2’. If the difference is nonnull, returns two or three values: if it is a single pair, returns true, the key, and the value; if it is more than one pair, returns true and an ‘Equivalent-Map’ of the pairs. If the difference is empty, returns false.

Package

fset.

Source

wb-trees.lisp.

Function: equivalent-map-intersect (key1 val1 key2 val2 val-fn)

Both ‘key1’ and ‘key2’ may be single values (representing a single key/value pair) or ‘Equivalent-Map’s of key/value pairs. That is, if ‘key1’ is a ‘Equivalent-Map’, ‘val1’ is ignored, and similarly for ‘key2’ and ‘val2’. If the intersection is nonnull, returns two or three values: if it is a single pair, returns true, the key, and the value; if it is more than one pair, returns true and an ‘Equivalent-Map’ of the pairs. If the intersection is null, returns false.

Package

fset.

Source

wb-trees.lisp.

Function: equivalent-map-less (eqvm key)

Removes the pair associated with ‘key’ from ‘eqvm’, an ‘Equivalent-Map’. If the result is a single pair, it’s returned as two values; otherwise one value is returned, which is an ‘Equivalent-Map’.

Package

fset.

Source

wb-trees.lisp.

Function: equivalent-map-restrict (key val set-elt)
Package

fset.

Source

wb-trees.lisp.

Function: equivalent-map-restrict-not (key val set-elt)
Package

fset.

Source

wb-trees.lisp.

Function: equivalent-map-union (key1 val1 key2 val2 &optional val-fn)

Both ‘key1’ and ‘key2’ may be single values (representing a single key/value pair) or ‘Equivalent-Map’s of key/value pairs. That is, if ‘key1’ is a ‘Equivalent-Map’, ‘val1’ is ignored, and similarly for ‘key2’ and ‘val2’. Returns one or more new key/value pairs in which the "2" pairs override the "1" pairs. If the result is a single pair, it’s returned as two values; otherwise one value is returned, which is an ‘Equivalent-Map’.

Package

fset.

Source

wb-trees.lisp.

Function: equivalent-map? (object)
Package

fset.

Source

wb-trees.lisp.

Function: equivalent-set-compare (val1 val2)
Package

fset.

Source

wb-trees.lisp.

Function: equivalent-set-difference (val1 val2)

Both ‘val1’ and ‘val2’ may be single values (representing singleton sets) or ‘Equivalent-Set’s of values. If their difference is nonnull, returns two values: true, and the difference, represented as a single value if a singleton, else as an ‘Equivalent-Set’. If the difference is null, returns ‘nil’.

Package

fset.

Source

wb-trees.lisp.

Function: equivalent-set-disjoint? (val1 val2)

Both ‘val1’ and ‘val2’ may be single values (representing singleton sets) or ‘Equivalent-Set’s of values. If their intersection is null, returns true, else false.

Package

fset.

Source

wb-trees.lisp.

Function: equivalent-set-intersect (val1 val2)

Both ‘val1’ and ‘val2’ may be single values (representing singleton sets) or ‘Equivalent-Set’s of values. If their intersection is nonnull, returns two values: true, and the intersection, represented as a single value if a singleton, else as an ‘Equivalent-Set’. If the intersection is null, returns ‘nil’.

Package

fset.

Source

wb-trees.lisp.

Reader: equivalent-set-members (instance)
Writer: (setf equivalent-set-members) (instance)
Package

fset.

Source

wb-trees.lisp.

Target Slot

members.

Function: equivalent-set-subset? (val1 val2)

Both ‘val1’ and ‘val2’ may be single values (representing singleton sets) or ‘Equivalent-Set’s of values. Returns true iff ‘val2’ contains all members of ‘val1’.

Package

fset.

Source

wb-trees.lisp.

Function: equivalent-set-union (val1 val2)

Both ‘val1’ and ‘val2’ may be single values (representing singleton sets) or ‘Equivalent-Set’s of values. Returns their union represented as a single value if a singleton, else as an ‘Equivalent-Set’.

Package

fset.

Source

wb-trees.lisp.

Function: equivalent-set? (object)
Package

fset.

Source

wb-trees.lisp.

Function: eqv (a b &rest more)
Package

fset.

Source

testing.lisp.

Function: every (pred sequence0 &rest more-sequences)

FSet generic version of ‘cl:every’.

Package

fset.

Source

fset.lisp.

Function: expand-2-relation-constructor-form (type-name subforms)
Package

fset.

Source

relations.lisp.

Function: expand-bag-constructor-form (type-name args)
Package

fset.

Source

reader.lisp.

Function: expand-map-constructor-form (type-name args)
Package

fset.

Source

reader.lisp.

Function: expand-seq-constructor-form (type-name args)
Package

fset.

Source

reader.lisp.

Function: expand-set-constructor-form (type-name args)
Package

fset.

Source

reader.lisp.

Function: expand-tuple-constructor-form (type-name args)
Package

fset.

Source

reader.lisp.

Function: fset-setup-rereading-readtable (readtable)

Adds the FSet rereading reader macros to ‘readtable’. These reader macros will correctly read structure printed by the FSet print functions. Returns ‘readtable’.

Package

fset.

Source

reader.lisp.

Function: get-indices (rel augmented-mp)

Returns a list giving the index to use for each element of ‘augmented-mp’.

Package

fset.

Source

relations.lisp.

Function: get-inverse (br)
Package

fset.

Source

relations.lisp.

Function: greater-than? (a b)
Package

fset.

Source

order.lisp.

Function: handle-var-arity (rel-arity pattern metapattern)
Package

fset.

Source

relations.lisp.

Reader: interval-kind (instance)
Writer: (setf interval-kind) (instance)
Package

fset.

Source

interval.lisp.

Target Slot

kind.

Function: interval-kind-symbol (lower-closed? upper-closed?)
Package

fset.

Source

interval.lisp.

Reader: interval-lower (instance)
Writer: (setf interval-lower) (instance)
Package

fset.

Source

interval.lisp.

Target Slot

lower.

Function: interval-lower-closed? (iv)
Package

fset.

Source

interval.lisp.

Reader: interval-set-contents (instance)
Writer: (setf interval-set-contents) (instance)
Package

fset.

Source

interval.lisp.

Target Slot

contents.

Function: interval-set? (object)
Package

fset.

Source

interval.lisp.

Reader: interval-upper (instance)
Writer: (setf interval-upper) (instance)
Package

fset.

Source

interval.lisp.

Target Slot

upper.

Function: interval-upper-closed? (iv)
Package

fset.

Source

interval.lisp.

Function: interval? (object)
Package

fset.

Source

interval.lisp.

Function: less-than? (a b)
Package

fset.

Source

order.lisp.

Function: list-insert (s pos r)
Package

fset.

Source

testing.lisp.

Function: list-partition (pred ls)
Package

fset.

Source

fset.lisp.

Function: list-relation? (object)
Package

fset.

Source

relations.lisp.

Function: list-remove (s pos)
Package

fset.

Source

testing.lisp.

Function: list-set-elt (s pos val)
Package

fset.

Source

testing.lisp.

Function: list-to-wb-2-relation (alist key-fn value-fn)
Package

fset.

Source

relations.lisp.

Function: make-bounded-set-internal (universe set complement?)
Package

fset.

Source

bounded-sets.lisp.

Function: make-char (code bits)
Package

fset.

Source

port.lisp.

Function: make-complement-set (complement)
Package

fset.

Source

complement-sets.lisp.

Function: make-dyn-tuple (descriptor contents)
Package

fset.

Source

tuples.lisp.

Function: make-equivalent-bag (alist)
Package

fset.

Source

wb-trees.lisp.

Function: make-equivalent-map (alist)
Package

fset.

Source

wb-trees.lisp.

Function: make-equivalent-set (members)
Package

fset.

Source

wb-trees.lisp.

Function: make-interval (lower upper lower-closed? upper-closed?)
Package

fset.

Source

interval.lisp.

Function: make-interval-set (contents)
Package

fset.

Source

interval.lisp.

Function: make-lock (&optional name)
Package

fset.

Source

port.lisp.

Function: make-my-integer (value)
Package

fset.

Source

testing.lisp.

Function: make-query-registry (arity indices key-index)
Package

fset.

Source

relations.lisp.

Function: make-raw-interval (lower upper kind)
Package

fset.

Source

interval.lisp.

Function: make-raw-wb-bag-tree-node (size total-count value count left right)
Package

fset.

Source

wb-trees.lisp.

Function: make-raw-wb-map-tree-node (size key value left right)
Package

fset.

Source

wb-trees.lisp.

Function: make-raw-wb-seq-tree-node (size left right)
Package

fset.

Source

wb-trees.lisp.

Function: make-raw-wb-set-tree-node (size value left right)
Package

fset.

Source

wb-trees.lisp.

Function: make-tuple-desc (key-set pairs)
Package

fset.

Source

tuples.lisp.

Function: make-tuple-desc-internal (key-set pairs lock serial-number)
Package

fset.

Source

tuples.lisp.

Function: make-tuple-key (name default-fn number)
Package

fset.

Source

tuples.lisp.

Function: make-wb-2-relation (size map0 map1)
Package

fset.

Source

relations.lisp.

Function: make-wb-bag (contents)
Package

fset.

Source

fset.lisp.

Function: make-wb-bag-tree-iterator (tree)
Package

fset.

Source

wb-trees.lisp.

Function: make-wb-bag-tree-iterator-internal (tree)
Package

fset.

Source

wb-trees.lisp.

Function: make-wb-bag-tree-node (value count left right)

The low-level constructor for a bag tree node. ‘count’ is ignored and can be ‘nil’ if value is an ‘Equivalent-Bag’.

Package

fset.

Source

wb-trees.lisp.

Function: make-wb-bag-tree-pair-iterator (tree)
Package

fset.

Source

wb-trees.lisp.

Function: make-wb-bag-tree-pair-iterator-internal (tree)
Package

fset.

Source

wb-trees.lisp.

Function: make-wb-list-relation (arity tuples indices)
Package

fset.

Source

relations.lisp.

Function: make-wb-map (contents &optional default)
Package

fset.

Source

fset.lisp.

Function: make-wb-map-tree-iterator (tree)
Package

fset.

Source

wb-trees.lisp.

Function: make-wb-map-tree-iterator-internal (tree)
Package

fset.

Source

wb-trees.lisp.

Function: make-wb-map-tree-node (key value left right)

The low-level constructor for a map tree node.

Package

fset.

Source

wb-trees.lisp.

Function: make-wb-seq (contents &optional default)
Package

fset.

Source

fset.lisp.

Function: make-wb-seq-tree-iterator (tree)
Package

fset.

Source

wb-trees.lisp.

Function: make-wb-seq-tree-iterator-internal (tree)
Package

fset.

Source

wb-trees.lisp.

Function: make-wb-seq-tree-node (left right)

The low-level constructor for a sequence tree node.

Package

fset.

Source

wb-trees.lisp.

Function: make-wb-set (contents)
Package

fset.

Source

fset.lisp.

Function: make-wb-set-tree-iterator (tree)
Package

fset.

Source

wb-trees.lisp.

Function: make-wb-set-tree-iterator-internal (tree)
Package

fset.

Source

wb-trees.lisp.

Function: make-wb-set-tree-node (value left right)

The low-level constructor for a set tree node.

Package

fset.

Source

wb-trees.lisp.

Function: make-wb-tree-iterator (tree size frame-size nodes-have-values?)
Package

fset.

Source

wb-trees.lisp.

Function: map-compare (m1 m2)
Package

fset.

Source

testing.lisp.

Function: map-filter (pred m)
Package

fset.

Source

fset.lisp.

Function: map-fn-compose (m fn)
Package

fset.

Source

fset.lisp.

Function: map-image (fn m)
Package

fset.

Source

fset.lisp.

Function: map-key-size (key)

The number of domain values represented by ‘key’, which can be more than 1 if ‘key’ is an ‘Equivalent-Map’.

Package

fset.

Source

wb-trees.lisp.

Function: map-reduce (fn m initial-value key init?)
Package

fset.

Source

fset.lisp.

Function: map-sort-and-group (m)
Package

fset.

Source

testing.lisp.

Function: map-to-sets-to-wb-2-relation (m)
Package

fset.

Source

relations.lisp.

Function: map-to-wb-2-relation (m)
Package

fset.

Source

relations.lisp.

Function: my-integer-p (object)
Package

fset.

Source

testing.lisp.

Reader: my-integer-value (instance)
Writer: (setf my-integer-value) (instance)
Package

fset.

Source

testing.lisp.

Target Slot

value.

Function: notany (pred sequence0 &rest more-sequences)

FSet generic version of ‘cl:notany’.

Package

fset.

Source

fset.lisp.

Function: notevery (pred sequence0 &rest more-sequences)

FSet generic version of ‘cl:notevery’.

Package

fset.

Source

fset.lisp.

Function: pick (fs)
Package

fset.

Source

testing.lisp.

Function: print-bounded-set (bs stream level)
Package

fset.

Source

bounded-sets.lisp.

Function: print-complement-set (cs stream level)
Package

fset.

Source

complement-sets.lisp.

Function: print-dyn-tuple (tuple stream level)
Package

fset.

Source

tuples.lisp.

Function: print-interval (iv stream level)
Package

fset.

Source

interval.lisp.

Function: print-interval-set (set stream level)
Package

fset.

Source

interval.lisp.

Function: print-tuple-key (key stream level)
Package

fset.

Source

tuples.lisp.

Function: print-wb-2-relation (br stream level)
Package

fset.

Source

relations.lisp.

Function: print-wb-bag (bag stream level)
Package

fset.

Source

fset.lisp.

Function: print-wb-list-relation (rel stream level)
Package

fset.

Source

relations.lisp.

Function: print-wb-map (map stream level)
Package

fset.

Source

fset.lisp.

Function: print-wb-seq (seq stream level)
Package

fset.

Source

fset.lisp.

Function: print-wb-set (set stream level)
Package

fset.

Source

fset.lisp.

Reader: query-registry-arity (instance)
Writer: (setf query-registry-arity) (instance)
Package

fset.

Source

relations.lisp.

Target Slot

arity.

Reader: query-registry-indices (instance)
Writer: (setf query-registry-indices) (instance)
Package

fset.

Source

relations.lisp.

Target Slot

indices.

Reader: query-registry-key-index (instance)
Writer: (setf query-registry-key-index) (instance)
Package

fset.

Source

relations.lisp.

Target Slot

key-index.

Function: query-registry-p (object)
Package

fset.

Source

relations.lisp.

Function: random-test (n)
Package

fset.

Source

testing.lisp.

Function: reduced-tuple (tuple augmented-mp)

Returns a list of those members of ‘tuple’ corresponding to instantiated positions in the original pattern.

Package

fset.

Source

relations.lisp.

Function: relation? (object)
Package

fset.

Source

relations.lisp.

Function: rereading-#[-reader (stream subchar arg)
Package

fset.

Source

reader.lisp.

Function: rereading-#{-reader (stream subchar arg)
Package

fset.

Source

reader.lisp.

Function: rereading-#~-reader (stream subchar arg)
Package

fset.

Source

reader.lisp.

Function: run-test-suite (n-iterations &optional random-seed)
Package

fset.

Source

testing.lisp.

Function: seq-compare (s1 s2)
Package

fset.

Source

testing.lisp.

Reader: seq-default (instance)
Writer: (setf seq-default) (instance)
Package

fset.

Source

order.lisp.

Target Slot

default.

Function: seq-filter (fn s)
Package

fset.

Source

fset.lisp.

Function: seq-image (fn s)
Package

fset.

Source

fset.lisp.

Function: seq-partition (fn s)
Package

fset.

Source

fset.lisp.

Function: seq-position (x s)
Package

fset.

Source

testing.lisp.

Function: seq-reduce (fn s initial-value key init? start end from-end?)
Package

fset.

Source

fset.lisp.

Function: set-compare (s1 s2)
Package

fset.

Source

testing.lisp.

Function: set-filter (pred s)
Package

fset.

Source

fset.lisp.

Function: set-image (fn s)
Package

fset.

Source

fset.lisp.

Function: set-partition (pred s)
Package

fset.

Source

fset.lisp.

Function: set-reduce (fn s initial-value key init?)
Package

fset.

Source

fset.lisp.

Function: set-transitive-closure (r s)
Package

fset.

Source

relations.lisp.

Function: set-value-size (value)

The number of members represented by ‘value’, which can be more than 1 if ‘value’ is an ‘Equivalent-Set’.

Package

fset.

Source

wb-trees.lisp.

Function: some (pred sequence0 &rest more-sequences)

FSet generic version of ‘cl:some’.

Package

fset.

Source

fset.lisp.

Function: split (pred collection)

Deprecated; use ‘partition’.

Package

fset.

Source

fset.lisp.

Function: string-insert (str idx ch)

Returns a new string like ‘str’ but with ‘ch’ inserted at ‘idx’. Careful – does no bounds checking on ‘str’, which it assumes is simple.

Package

fset.

Source

wb-trees.lisp.

Function: string-remove-at (str idx)
Package

fset.

Source

wb-trees.lisp.

Function: string-seq-to-set (vec lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: string-subseq (str start &optional end)

Returns a subsequence of ‘str’ between ‘start’ and ‘end’. Careful – does no bounds checking on ‘str’, which it assumes is simple.

Package

fset.

Source

wb-trees.lisp.

Function: string-subseq-insert (str start end idx ch)

Takes the subsequence of ‘str’ from ‘start’ to ‘end’, then at ‘idx’ within the result, inserts ‘ch’, returning the new string.

Package

fset.

Source

wb-trees.lisp.

Function: string-update (str idx ch)
Package

fset.

Source

wb-trees.lisp.

Function: test-bag-operations (i)
Package

fset.

Source

testing.lisp.

Function: test-bounded-sets ()

Simple tests on the Bounded Sets operations

Package

fset.

Source

testing.lisp.

Function: test-cl-generic-sequence-ops (i fs0 s0 fs1 s1)
Package

fset.

Source

testing.lisp.

Function: test-compare-lexicographically ()
Package

fset.

Source

testing.lisp.

Function: test-complement-sets ()

Simple tests on the Complement Sets operations

Package

fset.

Source

testing.lisp.

Function: test-equivalent-sets (&optional size reps)
Package

fset.

Source

testing.lisp.

Function: test-functional-deep-update ()
Package

fset.

Source

testing.lisp.

Function: test-map-operations (i a-set)
Package

fset.

Source

testing.lisp.

Function: test-misc ()

Tests some things that don’t need extensive random test cases generated.

Package

fset.

Source

testing.lisp.

Function: test-modify-macros ()
Package

fset.

Source

testing.lisp.

Function: test-reader ()
Package

fset.

Source

testing.lisp.

Function: test-relations ()

Simple tests on Relations

Package

fset.

Source

testing.lisp.

Function: test-rereader ()
Package

fset.

Source

testing.lisp.

Function: test-seq-operations (i)
Package

fset.

Source

testing.lisp.

Function: test-set-operations (i)
Package

fset.

Source

testing.lisp.

Function: test-tuple-operations (i)
Package

fset.

Source

testing.lisp.

Function: test-type-dispatch-speed (n)
Package

fset.

Source

testing.lisp.

Function: time-index (seq n)
Package

fset.

Source

testing.lisp.

Function: time-seq-iter (seq n)
Package

fset.

Source

testing.lisp.

Reader: tuple-desc-key-set (instance)
Writer: (setf tuple-desc-key-set) (instance)
Package

fset.

Source

tuples.lisp.

Target Slot

key-set.

Reader: tuple-desc-lock (instance)
Writer: (setf tuple-desc-lock) (instance)
Package

fset.

Source

tuples.lisp.

Target Slot

lock.

Reader: tuple-desc-next-desc-map (instance)
Writer: (setf tuple-desc-next-desc-map) (instance)
Package

fset.

Source

tuples.lisp.

Target Slot

next-desc-map.

Function: tuple-desc-p (object)
Package

fset.

Source

tuples.lisp.

Reader: tuple-desc-pairs (instance)
Writer: (setf tuple-desc-pairs) (instance)
Package

fset.

Source

tuples.lisp.

Target Slot

pairs.

Reader: tuple-desc-reorder-map-map (instance)
Writer: (setf tuple-desc-reorder-map-map) (instance)
Package

fset.

Source

tuples.lisp.

Target Slot

reorder-map-map.

Reader: tuple-desc-serial-number (instance)
Writer: (setf tuple-desc-serial-number) (instance)
Package

fset.

Source

tuples.lisp.

Target Slot

serial-number.

Function: tuple-get-reorder-map (old-desc new-desc)
Package

fset.

Source

tuples.lisp.

Reader: tuple-key-default-fn (instance)
Writer: (setf tuple-key-default-fn) (instance)
Package

fset.

Source

tuples.lisp.

Target Slot

default-fn.

Reader: tuple-key-number (instance)
Writer: (setf tuple-key-number) (instance)
Package

fset.

Source

tuples.lisp.

Target Slot

number.

Function: tuple-lookup (tuple key &optional no-reorder?)
Package

fset.

Source

tuples.lisp.

Function: tuple-make-reorder-map (old-desc new-desc)
Package

fset.

Source

tuples.lisp.

Function: tuple-random-value ()
Package

fset.

Source

tuples.lisp.

Function: tuple-reorder-keys (tuple idx)
Package

fset.

Source

tuples.lisp.

Function: tuple-with (tuple key val)
Package

fset.

Source

tuples.lisp.

Function: update (fn coll &rest keys)

Returns a new version of ‘coll’ in which the element reached by doing chained ‘lookup’s on ‘keys’ is updated by ‘fn’. An example will help a lot here: instead of writing

(incf (@ (@ (@ foo ’a) 3) 7))

you can write, equivalently

(setq foo (update #’1+ foo ’a 3 7))

This is perhaps most useful in contexts where you don’t want to do the ‘setq’ anyway.

Package

fset.

Source

fset.lisp.

Function: vector-insert (vec idx val)

Returns a new vector like ‘vec’ but with ‘val’ inserted at ‘idx’. Careful – does no bounds checking on ‘vec’, which it assumes is simple.

Package

fset.

Source

wb-trees.lisp.

Function: vector-insert-from-string (str idx val)

Returns a new vector like ‘str’ (a string) but with ‘val’ inserted at ‘idx’. Careful – does no bounds checking on ‘str’, which it assumes is simple.

Package

fset.

Source

wb-trees.lisp.

Function: vector-pair-bag-diff (pr1 pr2 lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: vector-pair-bag-intersect (pr1 pr2 lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: vector-pair-bag-product (pr1 pr2 lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: vector-pair-bag-subbag? (pr1 pr2 lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: vector-pair-bag-sum (pr1 pr2 lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: vector-pair-bag-union (pr1 pr2 lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: vector-pair-diff-2 (pr1 pr2 lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: vector-pair-intersect (pr1 pr2 val-fn lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: vector-pair-restrict (map-pr set-vec lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: vector-pair-restrict-not (map-pr set-vec lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: vector-pair-union (pr1 pr2 val-fn lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: vector-remove-at (vec idx)
Package

fset.

Source

wb-trees.lisp.

Function: vector-seq-to-set (vec lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: vector-set-binary-search (vec value)

Searches a vector set ‘vec’ for ‘value’. Returns two values, a symbol and an index. If ‘value’, or a value equivalent to ‘value’, is in ‘vec’, the symbol is ‘:equal’ resp. ‘:unequal’, and the index is the position of the value; otherwise, the symbol is ‘nil’ and the index is where ‘value’ would go if it were to be inserted.

Package

fset.

Source

wb-trees.lisp.

Function: vector-set-binary-search-cfn (vec value cfn)

Searches a vector set ‘vec’ for ‘value’. Returns two values, a symbol and an index. If ‘value’, or a value equivalent to ‘value’, is in ‘vec’, the symbol is ‘:equal’ resp. ‘:unequal’, and the index is the position of the value; otherwise, the symbol is ‘nil’ and the index is where ‘value’ would go if it were to be inserted.

Package

fset.

Source

wb-trees.lisp.

Function: vector-set-binary-search-hi (vec hi)

Returns the index of the right edge of the last member of ‘vec’ that is below ‘hi’.

Package

fset.

Source

wb-trees.lisp.

Function: vector-set-binary-search-lo (vec lo)

Returns the index of the left edge of the first member of ‘vec’ that is above ‘lo’.

Package

fset.

Source

wb-trees.lisp.

Function: vector-set-diff (vec1 vec2 lo hi)

Returns, as a vector, the set difference of vectors ‘vec1’ less ‘vec2’, restricted to those members above ‘lo’ and below ‘hi’.

Package

fset.

Source

wb-trees.lisp.

Function: vector-set-diff-2 (vec1 vec2 lo hi)

Returns, as two vector values, the set difference of vectors ‘str1’ less ‘str2’ and that of ‘str2’ less ‘str1’, restricted to those members above ‘lo’ and below ‘hi’.

Package

fset.

Source

wb-trees.lisp.

Function: vector-set-disjoint? (vec1 vec2 lo hi)

Returns true iff ‘vec1’ does not contain any member of ‘vec2’, restricted to those members above ‘lo’ and below ‘hi’.

Package

fset.

Source

wb-trees.lisp.

Function: vector-set-intersect (vec1 vec2 lo hi)

Returns, as a vector, the intersection of vectors ‘vec1’ and ‘vec2’, restricted to those members above ‘lo’ and below ‘hi’.

Package

fset.

Source

wb-trees.lisp.

Function: vector-set-subset? (vec1 vec2 lo hi)

Returns true iff ‘vec1’ contains all members of ‘vec2’, restricted to those members above ‘lo’ and below ‘hi’. ‘vec2’ may be ‘nil’.

Package

fset.

Source

wb-trees.lisp.

Function: vector-set-union (vec1 vec2 lo hi)

Returns, as a vector, the union of vectors ‘vec1’ and ‘vec2’, restricted to those members above ‘lo’ and below ‘hi’.

Package

fset.

Source

wb-trees.lisp.

Function: vector-subseq (vec start &optional end)

Returns a subsequence of ‘vec’ between ‘start’ and ‘end’, or ‘nil’ if the result would be of zero length. Careful – does no bounds checking on ‘vec’, which it assumes is simple.

Package

fset.

Source

wb-trees.lisp.

Function: vector-subseq-insert (vec start end idx val)

Takes the subsequence of ‘vec’ from ‘start’ to ‘end’, then at ‘idx’ within the result, inserts ‘val’, returning the new vector.

Package

fset.

Source

wb-trees.lisp.

Function: vector-update (vec idx val)

Returns a new vector like ‘vec’ but with ‘val’ at ‘idx’.

Package

fset.

Source

wb-trees.lisp.

Function: vector-update-from-string (str idx value)
Package

fset.

Source

wb-trees.lisp.

Reader: wb-2-relation-map0 (instance)
Writer: (setf wb-2-relation-map0) (instance)
Package

fset.

Source

relations.lisp.

Target Slot

map0.

Reader: wb-2-relation-map1 (instance)
Writer: (setf wb-2-relation-map1) (instance)
Package

fset.

Source

relations.lisp.

Target Slot

map1.

Reader: wb-2-relation-size (instance)
Writer: (setf wb-2-relation-size) (instance)
Package

fset.

Source

relations.lisp.

Target Slot

size.

Function: wb-2-relation? (object)
Package

fset.

Source

relations.lisp.

Reader: wb-bag-contents (instance)
Writer: (setf wb-bag-contents) (instance)
Package

fset.

Source

fset.lisp.

Target Slot

contents.

Function: wb-bag-tree-arb-pair (tree)

Returns an arbitrary member of the bag and its count. Assumes the bag is nonempty.

Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-build-node (value count left right)

Constructs a ‘WB-Bag-Tree’, performing one rebalancing step if required. ‘value’ must already be known to go between ‘left’ and ‘right’.

Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-compare (tree1 tree2)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-compare-rng (tree1 base1 tree2 base2 lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-concat (value count left right)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-diff (tree1 tree2)

Returns the set difference of ‘tree1’ less ‘tree2’. Runs in time linear in the total sizes of the two trees.

Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-diff-rng (tree1 tree2 lo hi)

Returns the set difference of ‘tree1’ less ‘tree2’, considering only those members that are above ‘lo’ and below ‘hi’, and assuming that the root values of ‘tree1’ and ‘tree2’ are in this range.

Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-find-equivalent (tree value)

If ‘tree’ contains one or more values equivalent to ‘value’, returns (first value) true, (second value) either the one value or an ‘Equivalent-Bag’ containing the values, and (third value) if the second value was a single value, the corresponding count; otherwise ‘nil’.

Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-from-list (lst)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-greatest-pair (tree)

Assumes ‘tree’ is nonempty. Returns the greatest member, or an arbitrary greatest member if there are more than one; the second value is the associated multiplicity.

Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-intersect (tree1 tree2)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-intersect-rng (tree1 tree2 lo hi)

Returns the intersection of ‘tree1’ with ‘tree2’, considering only those members that are above ‘lo’ and below ‘hi’, and assuming that the root values of ‘tree1’ and ‘tree2’ are in this range.

Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-iterator-canonicalize (iter)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-iterator-done? (iter)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-iterator-get (iter)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-join (left right)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-least-pair (tree)

Assumes ‘tree’ is nonempty. Returns the least member, or an arbitrary least member if there are more than one; the second value is the associated count.

Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-less (tree value &optional count)

Returns ‘tree’ with the count for ‘value’ decremented; if that count was 1, ‘value’ is removed entirely.

Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-less-minimum (tree)

Assumes ‘tree’ is nonempty. Returns a new tree with the minimum value removed.

Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-minimum-pair (tree)

Assumes ‘tree’ is nonempty. Returns the minimum value and count as two values. The value may be an ‘Equivalent-Bag’, in which case, as usual, the count is not meaningful.

Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-multiplicity (tree value)

Returns the multiplicity of ‘value’ in ‘tree’, or 0 if ‘value’ does not appear in ‘tree’. As a second value, returns the value found, if any.

Package

fset.

Source

wb-trees.lisp.

Reader: wb-bag-tree-node-count (instance)
Writer: (setf wb-bag-tree-node-count) (instance)
Package

fset.

Source

wb-trees.lisp.

Target Slot

count.

Reader: wb-bag-tree-node-left (instance)
Writer: (setf wb-bag-tree-node-left) (instance)
Package

fset.

Source

wb-trees.lisp.

Target Slot

left.

Function: wb-bag-tree-node-print (node stream depth)

Print function for ‘WB-Bag-Tree-Node’, q.v.

Package

fset.

Source

wb-trees.lisp.

Reader: wb-bag-tree-node-right (instance)
Writer: (setf wb-bag-tree-node-right) (instance)
Package

fset.

Source

wb-trees.lisp.

Target Slot

right.

Reader: wb-bag-tree-node-size (instance)
Writer: (setf wb-bag-tree-node-size) (instance)
Package

fset.

Source

wb-trees.lisp.

Target Slot

size.

Reader: wb-bag-tree-node-total-count (instance)
Writer: (setf wb-bag-tree-node-total-count) (instance)
Package

fset.

Source

wb-trees.lisp.

Target Slot

total-count.

Reader: wb-bag-tree-node-value (instance)
Writer: (setf wb-bag-tree-node-value) (instance)
Package

fset.

Source

wb-trees.lisp.

Target Slot

value.

Function: wb-bag-tree-node? (object)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-pair-iterator-canonicalize (iter)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-pair-iterator-done? (iter)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-pair-iterator-get (iter)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-product (tree1 tree2)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-product-rng (tree1 tree2 lo hi)

Returns the Production of ‘tree1’ with ‘tree2’, considering only those members that are above ‘lo’ and below ‘hi’, and assuming that the root values of ‘tree1’ and ‘tree2’ are in this range.

Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-rank (tree value)

Searches a bag tree ‘tree’ for ‘value’. Returns two values, a boolean and an index. If ‘value’, or a value equivalent to ‘value’, is in ‘tree’, the symbol is true, and the index is the rank of the value; otherwise, the boolean is false and the index is the rank ‘value’ would have if it were to be added. Note that if the bag contains equivalent-but-unequal elements, the rank of each of several such elements is guaranteed consistent only within the same tree (by ‘eq’), not between equal trees.

Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-rank-pair (tree rank)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-rank-pair-internal (tree rank)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-rank-trim (tree base lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-size (tree)

The number of value/count pairs contained in this tree.

Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-split (tree lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-subbag? (tree1 tree2)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-subbag?-rng (tree1 tree2 lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-sum (tree1 tree2)

Returns the sum of ‘tree’ and ‘tree2’.

Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-sum-rng (tree1 tree2 lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-to-set-tree (tree)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-total-count (tree)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-trim (tree lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-union (tree1 tree2)

Returns the union of ‘tree’ and ‘tree2’.

Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-union-rng (tree1 tree2 lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-vector-pair-sum (pr1 pr2 lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-vector-pair-union (pr1 pr2 lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-verify (tree)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-verify-rng (tree lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: wb-bag-tree-with (tree value &optional count)

Returns ‘tree’ with ‘value’ added with a count of ‘count’ (if it was already present, its count is incremented by ‘count’). ‘value’ may be an ‘Equivalent-Bag’.

Package

fset.

Source

wb-trees.lisp.

Function: wb-bag? (object)
Package

fset.

Source

fset.lisp.

Reader: wb-list-relation-arity (instance)
Writer: (setf wb-list-relation-arity) (instance)
Package

fset.

Source

relations.lisp.

Target Slot

arity.

Reader: wb-list-relation-indices (instance)
Writer: (setf wb-list-relation-indices) (instance)
Package

fset.

Source

relations.lisp.

Target Slot

indices.

Reader: wb-list-relation-tuples (instance)
Writer: (setf wb-list-relation-tuples) (instance)
Package

fset.

Source

relations.lisp.

Target Slot

tuples.

Function: wb-list-relation? (object)
Package

fset.

Source

relations.lisp.

Reader: wb-map-contents (instance)
Writer: (setf wb-map-contents) (instance)
Package

fset.

Source

fset.lisp.

Target Slot

contents.

Function: wb-map-default (instance)
Package

fset.

Source

fset.lisp.

Function: (setf wb-map-default) (instance)
Package

fset.

Source

fset.lisp.

Function: wb-map-from-cl-sequence (s key-fn value-fn)
Package

fset.

Source

fset.lisp.

Function: wb-map-from-list (list key-fn value-fn)
Package

fset.

Source

fset.lisp.

Function: wb-map-tree-arb-pair (tree)

Selects an arbitrary pair of the map. Assumes it is nonnull.

Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-build-node (key value left right)

Constructs a ‘WB-Map-Tree’, performing one rebalancing step if required. ‘key’ must already be known to go between ‘left’ and ‘right’.

Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-compare (tree1 tree2 &optional val-fn)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-compare-rng (tree1 base1 tree2 base2 lo hi val-fn)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-compose (tree fn)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-concat (key value left right)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-concat-maybe (pair? key value left right)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-diff-2 (tree1 tree2)

Returns two values: one containing the pairs that are in ‘tree1’ but not ‘tree2’, and the other containing the pairs that are in ‘tree2’ but not ‘tree1’.

Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-diff-2-rng (tree1 tree2 lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-domain (tree)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-find-equivalent (tree key)

If ‘tree’ contains one or more keys equivalent to ‘value’, returns (first value) true, (second value) either the one key or an ‘Equivalent-Map’ containing the values, and (third value) if the second value was a single key, the corresponding value; otherwise ‘nil’.

Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-greatest-pair (tree)

Assumes ‘tree’ is nonempty. Returns the greatest key and its value, or an arbitrary greatest key and its value if there are more than one.

Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-intersect (tree1 tree2 val-fn)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-intersect-rng (tree1 tree2 val-fn lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-iterator-canonicalize (iter)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-iterator-done? (iter)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-iterator-get (iter)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-join (left right)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-least-pair (tree)

Assumes ‘tree’ is nonempty. Returns the least key and its value, or an arbitrary least key and its value if there are more than one.

Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-less (tree key)

Returns a new tree like ‘tree’, but with any entry for ‘key’ removed.

Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-less-minimum (tree)

Assumes ‘tree’ is nonempty. Returns a new tree with the minimum key/value pair removed.

Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-lookup (tree key)

If ‘tree’ contains a pair whose key is ‘key’, returns two values, true and the associated value; otherwise ‘nil’.

Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-minimum-pair (tree)

Assumes ‘tree’ is nonempty. Returns the minimum key and value as two values. The key may be an ‘Equivalent-Map’, in which case, as usual, the value is not meaningful.

Package

fset.

Source

wb-trees.lisp.

Reader: wb-map-tree-node-key (instance)
Writer: (setf wb-map-tree-node-key) (instance)
Package

fset.

Source

wb-trees.lisp.

Target Slot

key.

Reader: wb-map-tree-node-left (instance)
Writer: (setf wb-map-tree-node-left) (instance)
Package

fset.

Source

wb-trees.lisp.

Target Slot

left.

Function: wb-map-tree-node-print (node stream depth)

Print function for ‘WB-Map-Tree-Node’, q.v.

Package

fset.

Source

wb-trees.lisp.

Reader: wb-map-tree-node-right (instance)
Writer: (setf wb-map-tree-node-right) (instance)
Package

fset.

Source

wb-trees.lisp.

Target Slot

right.

Reader: wb-map-tree-node-size (instance)
Writer: (setf wb-map-tree-node-size) (instance)
Package

fset.

Source

wb-trees.lisp.

Target Slot

size.

Reader: wb-map-tree-node-value (instance)
Writer: (setf wb-map-tree-node-value) (instance)
Package

fset.

Source

wb-trees.lisp.

Target Slot

value.

Function: wb-map-tree-node? (object)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-rank (tree key)

Searches a map tree ‘tree’ for ‘key’. Returns two values, a boolean and an index. If ‘key’, or a value equivalent to ‘key’, is in ‘tree’, the boolean is true, and the index is the rank of the value; otherwise, the boolean is false and the index is the rank ‘key’ would have if it were to be added. Note that if the map contains equivalent-but-unequal keys, the rank of each of several such keys is guaranteed consistent only within the same tree (by ‘eq’), not between equal trees.

Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-rank-pair (tree rank)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-rank-pair-internal (tree rank)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-rank-trim (tree base lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-restrict (map-tree set-tree)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-restrict-not (map-tree set-tree)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-restrict-not-rng (map-tree set-tree lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-restrict-rng (map-tree set-tree lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-size (tree)

The number of key/value pairs contained in this tree.

Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-split (tree lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-trim (tree lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-union (tree1 tree2 val-fn)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-union-rng (tree1 tree2 val-fn lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-vector-pair-union (pr1 pr2 val-fn lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-verify (tree)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-verify-rng (tree lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: wb-map-tree-with (tree key value)

Returns a new tree like ‘tree’ but with the pair < ‘key’, ‘value’ > added, shadowing any previous pair with the same key.

Package

fset.

Source

wb-trees.lisp.

Function: wb-map? (object)
Package

fset.

Source

fset.lisp.

Reader: wb-seq-contents (instance)
Writer: (setf wb-seq-contents) (instance)
Package

fset.

Source

fset.lisp.

Target Slot

contents.

Function: wb-seq-default (instance)
Package

fset.

Source

fset.lisp.

Function: (setf wb-seq-default) (instance)
Package

fset.

Source

fset.lisp.

Function: wb-seq-tree-append (tree value)
Package

fset.

Source

wb-trees.lisp.

Function: wb-seq-tree-build-node (left right)
Package

fset.

Source

wb-trees.lisp.

Function: wb-seq-tree-compare (tree1 tree2)
Package

fset.

Source

wb-trees.lisp.

Function: wb-seq-tree-compare-lexicographically (tree1 tree2)
Package

fset.

Source

wb-trees.lisp.

Function: wb-seq-tree-compare-rng (tree1 base1 tree2 base2 lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: wb-seq-tree-concat (left right)
Package

fset.

Source

wb-trees.lisp.

Function: wb-seq-tree-from-list (lst)
Package

fset.

Source

wb-trees.lisp.

Function: wb-seq-tree-from-vector (vec)
Package

fset.

Source

wb-trees.lisp.

Function: wb-seq-tree-insert (tree idx value)
Package

fset.

Source

wb-trees.lisp.

Function: wb-seq-tree-iterator-canonicalize (iter)
Package

fset.

Source

wb-trees.lisp.

Function: wb-seq-tree-iterator-done? (iter)
Package

fset.

Source

wb-trees.lisp.

Function: wb-seq-tree-iterator-get (iter)
Package

fset.

Source

wb-trees.lisp.

Reader: wb-seq-tree-node-left (instance)
Writer: (setf wb-seq-tree-node-left) (instance)
Package

fset.

Source

wb-trees.lisp.

Target Slot

left.

Function: wb-seq-tree-node-print (node stream depth)

Print function for ‘WB-Seq-Tree-Node’, q.v.

Package

fset.

Source

wb-trees.lisp.

Reader: wb-seq-tree-node-right (instance)
Writer: (setf wb-seq-tree-node-right) (instance)
Package

fset.

Source

wb-trees.lisp.

Target Slot

right.

Reader: wb-seq-tree-node-size (instance)
Writer: (setf wb-seq-tree-node-size) (instance)
Package

fset.

Source

wb-trees.lisp.

Target Slot

size.

Function: wb-seq-tree-node? (object)
Package

fset.

Source

wb-trees.lisp.

Function: wb-seq-tree-remove (tree idx)
Package

fset.

Source

wb-trees.lisp.

Function: wb-seq-tree-reverse (tree)
Package

fset.

Source

wb-trees.lisp.

Function: wb-seq-tree-size (tree)
Package

fset.

Source

wb-trees.lisp.

Function: wb-seq-tree-subscript (tree idx)
Package

fset.

Source

wb-trees.lisp.

Function: wb-seq-tree-subseq (tree start end)
Package

fset.

Source

wb-trees.lisp.

Function: wb-seq-tree-to-list (tree)
Package

fset.

Source

wb-trees.lisp.

Function: wb-seq-tree-to-set-tree (tree)
Package

fset.

Source

wb-trees.lisp.

Function: wb-seq-tree-to-string (tree)
Package

fset.

Source

wb-trees.lisp.

Function: wb-seq-tree-to-vector (tree)
Package

fset.

Source

wb-trees.lisp.

Function: wb-seq-tree-trim (tree base lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: wb-seq-tree-verify (tree)
Package

fset.

Source

wb-trees.lisp.

Function: wb-seq-tree-with (tree idx value)
Package

fset.

Source

wb-trees.lisp.

Function: wb-seq? (object)
Package

fset.

Source

fset.lisp.

Reader: wb-set-contents (instance)
Writer: (setf wb-set-contents) (instance)
Package

fset.

Source

fset.lisp.

Target Slot

contents.

Function: wb-set-tree-arb (tree)

Selects an arbitrary member of the set. Assumes it is nonnull.

Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-build-node (value left right)

Constructs a ‘WB-Set-Tree’, performing one rebalancing step if required. ‘value’ must already be known to go between ‘left’ and ‘right’.

Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-compare (tree1 tree2)
Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-compare-rng (tree1 base1 tree2 base2 lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-concat (value left right)

Corresponds to Adams’ ‘concat3’. Assumes that (all values in ‘left’) <= ‘value’ <= (all values in ‘right’); returns a new tree containing all values. This does more rebalancing than ‘WB-Set-Tree-Build-Node’, which otherwise has the same contract. ‘value’ may be an ‘Equivalent-Set’.

Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-diff (tree1 tree2)

Returns the set difference of ‘tree1’ less ‘tree2’. Runs in time linear in the total sizes of the two trees.

Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-diff-2 (tree1 tree2)

Returns two values: the set difference of ‘tree1’ less ‘tree2’, and that of ‘tree2’ less ‘tree1’. Runs in time linear in the total sizes of the two trees.

Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-diff-2-rng (tree1 tree2 lo hi)

Returns two values: the set difference of ‘tree1’ less ‘tree2’, and that of ‘tree2’ less ‘tree1’, considering only those members that are above ‘lo’ and below ‘hi’, and assuming that the root values of ‘tree1’ and ‘tree2’ are in this range.

Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-diff-rng (tree1 tree2 lo hi)

Returns the set difference of ‘tree1’ less ‘tree2’, considering only those members that are above ‘lo’ and below ‘hi’, and assuming that the root values of ‘tree1’ and ‘tree2’ are in this range.

Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-disjoint? (tree1 tree2)
Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-disjoint?-rng (tree1 tree2 lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-find-equal (tree value)

If ‘tree’ contains a value equal to ‘value’, returns (first value) true and (second value) the value; otherwise ‘nil’.

Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-find-equivalent (tree value)

If ‘tree’ contains one or more values equivalent to ‘value’, returns (first value) true and (second value) either the one value or an ‘Equivalent-Set’ containing the values; otherwise ‘nil’.

Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-find-rank (tree value)

Returns the rank at which ‘value’ appears in ‘tree’, if it does, else the rank it would occupy if it were present. The second value is true iff the value was found. Note that if the set contains equivalent-but-unequal elements, they all appear at the same rank.

Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-from-cl-sequence (seq)
Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-from-list (lst)
Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-greatest (tree)

Assumes ‘tree’ is nonempty. Returns the greatest member, or an arbitrary greatest member if there are more than one.

Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-intersect (tree1 tree2)

Returns the intersection of ‘tree1’ and ‘tree2’. Runs in time linear in the total sizes of the two trees.

Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-intersect-rng (tree1 tree2 lo hi)

Returns the intersection of ‘tree1’ with ‘tree2’, considering only those members that are above ‘lo’ and below ‘hi’, and assuming that the root values of ‘tree1’ and ‘tree2’ are in this range.

Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-iterator-canonicalize (iter)
Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-iterator-done? (iter)
Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-iterator-get (iter)
Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-join (left right)

Returns the union of ‘left’ and ‘right’ under the assumption that all values in ‘left’ are less than any value in ‘right’.

Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-least (tree)

Assumes ‘tree’ is nonempty. Returns the least member, or an arbitrary least member if there are more than one.

Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-less (tree value)
Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-less-minimum (tree)

Assumes ‘tree’ is nonempty. Returns a new tree with the minimum value or ‘Equivalent-Set’ removed.

Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-member? (tree value)

Returns true iff ‘value’ is a member of ‘tree’.

Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-member?-cfn (tree value cfn)

Returns true iff ‘value’ is a member of ‘tree’.

Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-minimum-value (tree)

Assumes ‘tree’ is nonempty. Returns the minimum value. This may be an ‘Equivalent-Set’.

Package

fset.

Source

wb-trees.lisp.

Reader: wb-set-tree-node-left (instance)
Writer: (setf wb-set-tree-node-left) (instance)
Package

fset.

Source

wb-trees.lisp.

Target Slot

left.

Function: wb-set-tree-node-print (node stream depth)

Print function for ‘WB-Set-Tree-Node’, q.v.

Package

fset.

Source

wb-trees.lisp.

Reader: wb-set-tree-node-right (instance)
Writer: (setf wb-set-tree-node-right) (instance)
Package

fset.

Source

wb-trees.lisp.

Target Slot

right.

Reader: wb-set-tree-node-size (instance)
Writer: (setf wb-set-tree-node-size) (instance)
Package

fset.

Source

wb-trees.lisp.

Target Slot

size.

Reader: wb-set-tree-node-value (instance)
Writer: (setf wb-set-tree-node-value) (instance)
Package

fset.

Source

wb-trees.lisp.

Target Slot

value.

Function: wb-set-tree-node? (object)
Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-rank (tree value)

Searches a set tree ‘tree’ for ‘value’. Returns two values, a boolean and an index. If ‘value’, or a value equivalent to ‘value’, is in ‘tree’, the boolean is true, and the index is the rank of the value; otherwise, the boolean is false and the index is the rank ‘value’ would have if it were to be added. Note that if the set contains equivalent-but-unequal elements, the rank of each of several such elements is guaranteed consistent only within the same tree (by ‘eq’), not between equal trees.

Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-rank-element (tree rank)
Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-rank-element-internal (tree rank)
Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-rank-trim (tree base lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-size (tree)

The number of members contained in this tree.

Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-split (tree lo hi)

Corresponds to Adams’ ‘split_lt’ and ‘split_gt’. Returns a tree containing those members of ‘tree’ above ‘lo’ and below ‘hi’.

Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-split-above (tree value)
Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-split-below (tree value)
Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-subset? (tree1 tree2)
Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-subset?-rng (tree1 tree2 lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-to-bag-tree (tree)
Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-trim (tree lo hi)

Corresponds to Adams’ ‘trim’ and variants. Removes any tree nodes whose values are less than ‘lo’ or greater than ‘hi’. Note, this does _not_ guarantee that the result only contains values between ‘lo’ and ‘hi’; use ‘-Split’ for that. This, however, doesn’t cons.

Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-union (tree1 tree2)

Returns the union of ‘tree1’ and ‘tree2’. Runs in time linear in the total sizes of the two trees.

Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-union-rng (tree1 tree2 lo hi)

Returns the union of ‘tree1’ with ‘tree2’, considering only those members that are above ‘lo’ and below ‘hi’, and assuming that the root values of ‘tree1’ and ‘tree2’ are in this range.

Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-vector-union (vec1 vec2 lo hi)

Returns the union of vectors ‘vec1’ and ‘vec2’, restricted to those members above ‘lo’ and below ‘hi’. Creates new set tree nodes if needed, either because the result exceeds the vector threshold size, or because one or more pairs of equivalent members were found.

Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-verify (tree)
Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-verify-rng (tree lo hi)
Package

fset.

Source

wb-trees.lisp.

Function: wb-set-tree-with (tree value)

If ‘value’ is in ‘tree’, returns ‘tree’; otherwise returns ‘tree’ with ‘value’ added. ‘value’ may be an ‘Equivalent-Set’.

Package

fset.

Source

wb-trees.lisp.

Function: wb-set? (object)
Package

fset.

Source

fset.lisp.

Function: wb-tree-max-depth (size nodes-have-values?)
Package

fset.

Source

wb-trees.lisp.

Function: wb-tree-true-max-depth (size nodes-have-values?)
Package

fset.

Source

wb-trees.lisp.

Function: xconcat (seq1 seq2)
Package

fset.

Source

macros.lisp.

Function: ximage (coll fn)
Package

fset.

Source

macros.lisp.


6.2.7 Generic functions

Generic Function: cartesian-product (sets)
Package

fset.

Methods
Method: cartesian-product ((sets list))
Source

relations.lisp.

Generic Function: default (collection)

Returns the default for the map or seq, i.e., the value returned by ‘lookup’ when the supplied key or index is not in the domain.

Package

fset.

Source

fset.lisp.

Methods
Method: default ((s seq))
Method: default ((m map))
Generic Function: internal-do-2-relation (br elt-fn value-fn)
Package

fset.

Source

relations.lisp.

Methods
Method: internal-do-2-relation ((br wb-2-relation) elt-fn value-fn)
Generic Function: internal-do-bag-pairs (bag elt-fn &optional value-fn)

Calls ‘elt-fn’ on successive pairs of the bag (the second argument is
the multiplicity); when done, calls ‘value-fn’ on no arguments and returns the result(s). This is called by ‘do-bag’ to provide for the possibility of different bag implementations; it is not for public use. ‘elt-fn’ and ‘value-fn’ must be function objects, not symbols.

Package

fset.

Source

fset.lisp.

Methods
Method: internal-do-bag-pairs ((b wb-bag) elt-fn &optional value-fn)
Generic Function: internal-do-list-relation (rel elt-fn value-fn)
Package

fset.

Source

relations.lisp.

Methods
Method: internal-do-list-relation ((rel wb-list-relation) elt-fn value-fn)
Generic Function: internal-do-map (map elt-fn &optional value-fn)

Calls ‘elt-fn’ on successive pairs of the map (as two arguments); when done, calls ‘value-fn’ on no arguments and returns the result(s). This is called by ‘do-map’ to provide for the possibility of different map implementations; it is not for public use. ‘elt-fn’ and ‘value-fn’ must be function objects, not symbols.

Package

fset.

Source

fset.lisp.

Methods
Method: internal-do-map ((m wb-map) elt-fn &optional value-fn)
Generic Function: internal-do-seq (seq elt-fn value-fn index? &key start end from-end?)

Calls ‘elt-fn’ on successive elements of ‘seq’, possibly restricted by ‘start’ and ‘end’, and in reverse order if ‘from-end?’ is true. When done, calls ‘value-fn’ on no arguments and returns the result(s). This is called by ‘do-seq’ to provide for the possibility of different seq implementations; it is not for public use. ‘elt-fn’ and ‘value-fn’ must be function objects, not symbols.

Package

fset.

Source

fset.lisp.

Methods
Method: internal-do-seq ((s wb-seq) elt-fn value-fn index? &key start end from-end?)
Generic Function: internal-do-set (set elt-fn &optional value-fn)

Calls ‘elt-fn’ on successive elements of the set; when done, calls ‘value-fn’ on no arguments and returns the result(s). This is called by ‘do-set’ to provide for the possibility of different set implementations; it is not for public use. ‘elt-fn’ and ‘value-fn’ must be function objects, not symbols.

Package

fset.

Source

fset.lisp.

Methods
Method: internal-do-set ((bs bounded-set) elt-fn &optional value-fn)
Source

bounded-sets.lisp.

Method: internal-do-set ((cs complement-set) elt-fn &optional value-fn)
Source

complement-sets.lisp.

Method: internal-do-set ((s wb-set) elt-fn &optional value-fn)
Generic Function: internal-do-tuple (tuple elt-fn value-fn)

Calls ‘elt-fn’ on successive pairs of the tuple (as two arguments); when done, calls ‘value-fn’ on no arguments and returns the result(s). This is called by ‘do-tuple’ to provide for the possibility of different tuple implementations; it is not for public use. ‘elt-fn’ and ‘value-fn’ must be function objects, not symbols.

Package

fset.

Source

tuples.lisp.

Methods
Method: internal-do-tuple ((tup tuple) elt-fn value-fn)
Generic Function: less-interval (interval-set lower upper lower-closed? upper-closed?)
Package

fset.

Source

interval.lisp.

Methods
Method: less-interval ((s interval-set) lower upper lower-closed? upper-closed?)
Generic Reader: my-identity-ordered-obj-value (object)
Package

fset.

Methods
Reader Method: my-identity-ordered-obj-value ((my-identity-ordered-obj my-identity-ordered-obj))

automatically generated reader method

Source

testing.lisp.

Target Slot

value.

Generic Writer: (setf my-identity-ordered-obj-value) (object)
Package

fset.

Methods
Writer Method: (setf my-identity-ordered-obj-value) ((my-identity-ordered-obj my-identity-ordered-obj))

automatically generated writer method

Source

testing.lisp.

Target Slot

value.

Generic Reader: my-sequence-actual (object)
Package

fset.

Methods
Reader Method: my-sequence-actual ((my-sequence my-sequence))

automatically generated reader method

Source

testing.lisp.

Target Slot

actual.

Generic Writer: (setf my-sequence-actual) (object)
Package

fset.

Methods
Writer Method: (setf my-sequence-actual) ((my-sequence my-sequence))

automatically generated writer method

Source

testing.lisp.

Target Slot

actual.

Generic Reader: my-unhandled-obj-value (object)
Package

fset.

Methods
Reader Method: my-unhandled-obj-value ((my-unhandled-obj my-unhandled-obj))

automatically generated reader method

Source

testing.lisp.

Target Slot

value.

Generic Writer: (setf my-unhandled-obj-value) (object)
Package

fset.

Methods
Writer Method: (setf my-unhandled-obj-value) ((my-unhandled-obj my-unhandled-obj))

automatically generated writer method

Source

testing.lisp.

Target Slot

value.

Generic Reader: serial-number (object)
Package

fset.

Methods
Reader Method: serial-number ((identity-ordering-mixin identity-ordering-mixin))

automatically generated reader method

Source

order.lisp.

Target Slot

serial-number.

Generic Writer: (setf serial-number) (object)
Package

fset.

Methods
Writer Method: (setf serial-number) ((identity-ordering-mixin identity-ordering-mixin))

automatically generated writer method

Source

order.lisp.

Target Slot

serial-number.

Generic Function: sort-and-group (seq pred &key key)

Like ’stable-sort’, but additionally groups the result, returning a seq of seqs, where the elements of each inner seq are equal according to ‘pred’ and, optionally, ‘key’.

Package

fset.

Source

fset.lisp.

Methods
Method: sort-and-group ((s seq) pred &key key)
Generic Function: transitive-closure (2-relation set)

The transitive closure of the set over the relation. The relation may also be supplied as a function returning a set.

Package

fset.

Source

relations.lisp.

Methods
Method: transitive-closure ((r 2-relation) (s set))
Method: transitive-closure ((fn function) (s set))
Generic Function: verify (coll)
Package

fset.

Source

testing.lisp.

Methods
Method: verify ((br wb-2-relation))
Source

relations.lisp.

Method: verify ((s wb-seq))
Method: verify ((m wb-map))
Method: verify ((b wb-bag))
Method: verify ((s wb-set))
Generic Function: with-interval (interval-set lower upper lower-closed? upper-closed?)
Package

fset.

Source

interval.lisp.

Methods
Method: with-interval ((s interval-set) lower upper lower-closed? upper-closed?)

6.2.8 Conditions

Condition: simple-program-error
Package

fset.

Source

fset.lisp.

Direct superclasses
  • program-error.
  • simple-condition.

6.2.9 Structures

Structure: complement-set

A "complement set" is the complement of an ordinary set. It’s infinite, so it can’t be enumerated as is. But its complement is ordinary, of course, as is its intersection with an ordinary set, and the difference of it and another complement set.

Package

fset.

Source

complement-sets.lisp.

Direct superclasses

set.

Direct methods
Direct slots
Slot: complement
Readers

complement-set-complement.

Writers

(setf complement-set-complement).

Structure: equivalent-bag
Package

fset.

Source

wb-trees.lisp.

Direct superclasses

structure-object.

Direct methods
Direct slots
Slot: alist
Type

list

Readers

equivalent-bag-alist.

Writers

(setf equivalent-bag-alist).

Structure: equivalent-map
Package

fset.

Source

wb-trees.lisp.

Direct superclasses

structure-object.

Direct methods
Direct slots
Slot: alist
Type

list

Readers

equivalent-map-alist.

Writers

(setf equivalent-map-alist).

Structure: equivalent-set
Package

fset.

Source

wb-trees.lisp.

Direct superclasses

structure-object.

Direct methods
Direct slots
Slot: members
Type

list

Readers

equivalent-set-members.

Writers

(setf equivalent-set-members).

Structure: interval
Package

fset.

Source

interval.lisp.

Direct superclasses

structure-object.

Direct methods
Direct slots
Slot: lower
Readers

interval-lower.

Writers

(setf interval-lower).

Slot: upper
Readers

interval-upper.

Writers

(setf interval-upper).

Slot: kind
Readers

interval-kind.

Writers

(setf interval-kind).

Structure: interval-set
Package

fset.

Source

interval.lisp.

Direct superclasses

set.

Direct methods
Direct slots
Slot: contents
Readers

interval-set-contents.

Writers

(setf interval-set-contents).

Structure: my-integer
Package

fset.

Source

testing.lisp.

Direct superclasses

structure-object.

Direct methods

compare.

Direct slots
Slot: value
Readers

my-integer-value.

Writers

(setf my-integer-value).

Structure: tuple-desc
Package

fset.

Source

tuples.lisp.

Direct superclasses

structure-object.

Direct methods

compare.

Direct slots
Slot: key-set
Readers

tuple-desc-key-set.

Writers

(setf tuple-desc-key-set).

Slot: pairs
Readers

tuple-desc-pairs.

Writers

(setf tuple-desc-pairs).

Slot: lock
Readers

tuple-desc-lock.

Writers

(setf tuple-desc-lock).

Slot: reorder-map-map
Initform

(fset:empty-map)

Readers

tuple-desc-reorder-map-map.

Writers

(setf tuple-desc-reorder-map-map).

Slot: next-desc-map
Initform

(fset:empty-map)

Readers

tuple-desc-next-desc-map.

Writers

(setf tuple-desc-next-desc-map).

Slot: serial-number
Readers

tuple-desc-serial-number.

Writers

(setf tuple-desc-serial-number).

Structure: tuple-key
Package

fset.

Source

tuples.lisp.

Direct superclasses

structure-object.

Direct methods
Direct slots
Slot: name
Readers

tuple-key-name.

Writers

(setf tuple-key-name).

Slot: default-fn
Readers

tuple-key-default-fn.

Writers

(setf tuple-key-default-fn).

Slot: number
Package

common-lisp.

Readers

tuple-key-number.

Writers

(setf tuple-key-number).

Structure: wb-bag-tree-node
Package

fset.

Source

wb-trees.lisp.

Direct superclasses

structure-object.

Direct methods

print-object.

Direct slots
Slot: left
Type

(or null fset::wb-bag-tree-node cons)

Readers

wb-bag-tree-node-left.

Writers

(setf wb-bag-tree-node-left).

Slot: right
Type

(or null fset::wb-bag-tree-node cons)

Readers

wb-bag-tree-node-right.

Writers

(setf wb-bag-tree-node-right).

Slot: value
Readers

wb-bag-tree-node-value.

Writers

(setf wb-bag-tree-node-value).

Slot: count
Type

integer

Initform

0

Readers

wb-bag-tree-node-count.

Writers

(setf wb-bag-tree-node-count).

Slot: total-count
Type

integer

Initform

0

Readers

wb-bag-tree-node-total-count.

Writers

(setf wb-bag-tree-node-total-count).

Slot: size
Type

fixnum

Initform

0

Readers

wb-bag-tree-node-size.

Writers

(setf wb-bag-tree-node-size).

Structure: wb-map-tree-node
Package

fset.

Source

wb-trees.lisp.

Direct superclasses

structure-object.

Direct methods

print-object.

Direct slots
Slot: left
Type

(or null fset::wb-map-tree-node cons)

Readers

wb-map-tree-node-left.

Writers

(setf wb-map-tree-node-left).

Slot: right
Type

(or null fset::wb-map-tree-node cons)

Readers

wb-map-tree-node-right.

Writers

(setf wb-map-tree-node-right).

Slot: key
Readers

wb-map-tree-node-key.

Writers

(setf wb-map-tree-node-key).

Slot: value
Readers

wb-map-tree-node-value.

Writers

(setf wb-map-tree-node-value).

Slot: size
Type

fixnum

Initform

0

Readers

wb-map-tree-node-size.

Writers

(setf wb-map-tree-node-size).

Structure: wb-seq-tree-node
Package

fset.

Source

wb-trees.lisp.

Direct superclasses

structure-object.

Direct methods

print-object.

Direct slots
Slot: left
Type

(or null fset::wb-seq-tree-node simple-string simple-vector)

Readers

wb-seq-tree-node-left.

Writers

(setf wb-seq-tree-node-left).

Slot: right
Type

(or null fset::wb-seq-tree-node simple-string simple-vector)

Readers

wb-seq-tree-node-right.

Writers

(setf wb-seq-tree-node-right).

Slot: size
Type

fixnum

Initform

0

Readers

wb-seq-tree-node-size.

Writers

(setf wb-seq-tree-node-size).

Structure: wb-set-tree-node
Package

fset.

Source

wb-trees.lisp.

Direct superclasses

structure-object.

Direct methods

print-object.

Direct slots
Slot: left
Type

(or null fset::wb-set-tree-node simple-vector)

Readers

wb-set-tree-node-left.

Writers

(setf wb-set-tree-node-left).

Slot: right
Type

(or null fset::wb-set-tree-node simple-vector)

Readers

wb-set-tree-node-right.

Writers

(setf wb-set-tree-node-right).

Slot: value
Readers

wb-set-tree-node-value.

Writers

(setf wb-set-tree-node-value).

Slot: size
Type

fixnum

Initform

0

Readers

wb-set-tree-node-size.

Writers

(setf wb-set-tree-node-size).


6.2.10 Classes

Class: my-identity-ordered-obj

Object that has identity ordering

Package

fset.

Source

testing.lisp.

Direct superclasses

identity-ordering-mixin.

Direct methods
Direct slots
Slot: value
Initargs

:value

Readers

my-identity-ordered-obj-value.

Writers

(setf my-identity-ordered-obj-value).

Class: my-sequence

An example of an SBCL user-defined sequence class

Package

fset.

Source

testing.lisp.

Direct superclasses

sequence.

Direct methods
Direct slots
Slot: actual
Type

list

Initargs

:actual

Readers

my-sequence-actual.

Writers

(setf my-sequence-actual).

Class: my-unhandled-obj

Object on which we have defined no FSET methods.

Package

fset.

Source

testing.lisp.

Direct methods
Direct slots
Slot: value
Initargs

:value

Readers

my-unhandled-obj-value.

Writers

(setf my-unhandled-obj-value).


6.2.11 Types

Type: wb-bag-tree ()
Package

fset.

Source

wb-trees.lisp.

Type: wb-map-tree ()
Package

fset.

Source

wb-trees.lisp.

Type: wb-seq-tree ()
Package

fset.

Source

wb-trees.lisp.

Type: wb-set-tree ()
Package

fset.

Source

wb-trees.lisp.


Appendix A Indexes


A.1 Concepts


A.2 Functions

Jump to:   #   (   2   @  
A   B   C   D   E   F   G   H   I   J   L   M   N   P   Q   R   S   T   U   V   W   X  
Index Entry  Section

#
#$-reader: Private ordinary functions
#%-reader: Private ordinary functions
#[-reader: Private ordinary functions
#{-reader: Private ordinary functions
#~-reader: Private ordinary functions

(
(setf @): Public setf expanders
(setf bounded-set-complement?): Private ordinary functions
(setf bounded-set-set): Private ordinary functions
(setf bounded-set-universe): Private ordinary functions
(setf complement-set-complement): Private ordinary functions
(setf dyn-tuple-contents): Private ordinary functions
(setf dyn-tuple-descriptor): Private ordinary functions
(setf elt): Public standalone methods
(setf equivalent-bag-alist): Private ordinary functions
(setf equivalent-map-alist): Private ordinary functions
(setf equivalent-set-members): Private ordinary functions
(setf interval-kind): Private ordinary functions
(setf interval-lower): Private ordinary functions
(setf interval-set-contents): Private ordinary functions
(setf interval-upper): Private ordinary functions
(setf lookup): Public setf expanders
(setf map-default): Public ordinary functions
(setf my-identity-ordered-obj-value): Private generic functions
(setf my-identity-ordered-obj-value): Private generic functions
(setf my-integer-value): Private ordinary functions
(setf my-sequence-actual): Private generic functions
(setf my-sequence-actual): Private generic functions
(setf my-unhandled-obj-value): Private generic functions
(setf my-unhandled-obj-value): Private generic functions
(setf query-registry-arity): Private ordinary functions
(setf query-registry-indices): Private ordinary functions
(setf query-registry-key-index): Private ordinary functions
(setf seq-default): Private ordinary functions
(setf serial-number): Private generic functions
(setf serial-number): Private generic functions
(setf tuple-desc-key-set): Private ordinary functions
(setf tuple-desc-lock): Private ordinary functions
(setf tuple-desc-next-desc-map): Private ordinary functions
(setf tuple-desc-pairs): Private ordinary functions
(setf tuple-desc-reorder-map-map): Private ordinary functions
(setf tuple-desc-serial-number): Private ordinary functions
(setf tuple-key-default-fn): Private ordinary functions
(setf tuple-key-name): Public ordinary functions
(setf tuple-key-number): Private ordinary functions
(setf wb-2-relation-map0): Private ordinary functions
(setf wb-2-relation-map1): Private ordinary functions
(setf wb-2-relation-size): Private ordinary functions
(setf wb-bag-contents): Private ordinary functions
(setf wb-bag-tree-node-count): Private ordinary functions
(setf wb-bag-tree-node-left): Private ordinary functions
(setf wb-bag-tree-node-right): Private ordinary functions
(setf wb-bag-tree-node-size): Private ordinary functions
(setf wb-bag-tree-node-total-count): Private ordinary functions
(setf wb-bag-tree-node-value): Private ordinary functions
(setf wb-list-relation-arity): Private ordinary functions
(setf wb-list-relation-indices): Private ordinary functions
(setf wb-list-relation-tuples): Private ordinary functions
(setf wb-map-contents): Private ordinary functions
(setf wb-map-default): Private ordinary functions
(setf wb-map-tree-node-key): Private ordinary functions
(setf wb-map-tree-node-left): Private ordinary functions
(setf wb-map-tree-node-right): Private ordinary functions
(setf wb-map-tree-node-size): Private ordinary functions
(setf wb-map-tree-node-value): Private ordinary functions
(setf wb-seq-contents): Private ordinary functions
(setf wb-seq-default): Private ordinary functions
(setf wb-seq-tree-node-left): Private ordinary functions
(setf wb-seq-tree-node-right): Private ordinary functions
(setf wb-seq-tree-node-size): Private ordinary functions
(setf wb-set-contents): Private ordinary functions
(setf wb-set-tree-node-left): Private ordinary functions
(setf wb-set-tree-node-right): Private ordinary functions
(setf wb-set-tree-node-size): Private ordinary functions
(setf wb-set-tree-node-value): Private ordinary functions

2
2-relation: Public macros
2-relation-fn-compose: Private ordinary functions
2-relation-to-wb-map: Private ordinary functions
2-relation?: Private ordinary functions

@
@: Public macros

A
add-to-front: Private ordinary functions
adjoinf: Public macros
adjust-sequence: Public standalone methods
alist-assign: Private ordinary functions
alist-bag-combine: Private ordinary functions
alist-bag-difference: Private ordinary functions
alist-bag-intersection: Private ordinary functions
alist-bag-product: Private ordinary functions
alist-bag-remove: Private ordinary functions
alist-bag-size: Private ordinary functions
alist-bag-sum: Private ordinary functions
alist-bag-union: Private ordinary functions
alist-remove: Private ordinary functions
all-queries: Public generic functions
all-queries: Public generic functions
appendf: Public macros
arb: Public generic functions
arb: Public generic functions
arb: Public generic functions
arb: Public generic functions
arb: Public generic functions
arb: Public generic functions
arb: Public generic functions
arb: Public generic functions
arity: Public generic functions
arity: Public generic functions
arity: Public generic functions
arity: Public generic functions
at-rank: Public generic functions
at-rank: Public generic functions
at-rank: Public generic functions
at-rank: Public generic functions
augmented-mp: Private ordinary functions
augmented-mp-matches?: Private ordinary functions

B
bag: Public macros
bag-difference: Public generic functions
bag-difference: Public generic functions
bag-difference: Public generic functions
bag-difference: Public generic functions
bag-filter: Private ordinary functions
bag-filter-pairs: Private ordinary functions
bag-from-list: Private ordinary functions
bag-image: Private ordinary functions
bag-product: Public generic functions
bag-product: Public generic functions
bag-product: Public generic functions
bag-product: Public generic functions
bag-reduce: Private ordinary functions
bag-sum: Public generic functions
bag-sum: Public generic functions
bag-sum: Public generic functions
bag-sum: Public generic functions
bag-value-size: Private ordinary functions
bag?: Public ordinary functions
base-char-p: Private ordinary functions
bounded-set-complement?: Private ordinary functions
bounded-set-contents: Public ordinary functions
bounded-set-set: Private ordinary functions
bounded-set-universe: Private ordinary functions
bounded-set?: Private ordinary functions

C
cartesian-product: Private generic functions
cartesian-product: Private generic functions
check-three-arguments: Private macros
check-two-arguments: Private macros
coerce-to-function: Private ordinary functions
coerce-to-function-or-equal?: Private ordinary functions
collection?: Public ordinary functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare: Public generic functions
compare-intervals: Private ordinary functions
compare-lexicographically: Public generic functions
compare-lexicographically: Public generic functions
compare-lexicographically: Public generic functions
compare-lexicographically: Public generic functions
compare-lexicographically: Public generic functions
compare-lists-lexicographically: Private ordinary functions
compare-slots: Public macros
compare-strings: Private ordinary functions
Compiler Macro, update: Private compiler macros
complement: Public generic functions
complement: Public generic functions
complement: Public generic functions
complement: Public generic functions
complement: Public generic functions
complement-set-complement: Private ordinary functions
complement-set?: Private ordinary functions
compose: Public generic functions
compose: Public generic functions
compose: Public generic functions
compose: Public generic functions
compose: Public generic functions
compose: Public generic functions
compose: Public generic functions
compose: Public generic functions
compose: Public generic functions
compose: Public generic functions
composef: Public macros
concat: Public generic functions
concat: Public generic functions
concat: Public generic functions
conflicts: Public generic functions
conflicts: Public generic functions
contains?: Public generic functions
contains?: Public generic functions
contains?: Public generic functions
contains?: Public generic functions
contains?: Public generic functions
contains?: Public generic functions
contains?: Public generic functions
contains?: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
convert: Public generic functions
copy-equivalent-bag: Private ordinary functions
copy-equivalent-map: Private ordinary functions
copy-equivalent-set: Private ordinary functions
copy-my-integer: Private ordinary functions
copy-query-registry: Private ordinary functions
copy-tuple-desc: Private ordinary functions
copy-tuple-key: Private ordinary functions
copy-wb-bag-tree-node: Private ordinary functions
copy-wb-map-tree-node: Private ordinary functions
copy-wb-seq-tree-node: Private ordinary functions
copy-wb-set-tree-node: Private ordinary functions
count: Public generic functions
count: Public generic functions
count: Public generic functions
count: Public generic functions
count: Public generic functions
count: Public generic functions
count-if: Public generic functions
count-if: Public generic functions
count-if: Public generic functions
count-if: Public generic functions
count-if: Public generic functions
count-if: Public generic functions
count-if-not: Public generic functions
count-if-not: Public generic functions
count-if-not: Public generic functions
count-if-not: Public generic functions
count-if-not: Public generic functions
count-if-not: Public generic functions

D
def-tuple-key: Public macros
default: Private generic functions
default: Private generic functions
default: Private generic functions
define-cross-type-compare-methods: Public macros
define-tuple-key: Public macros
disjoint?: Public generic functions
disjoint?: Public generic functions
disjoint?: Public generic functions
disjoint?: Public generic functions
disjoint?: Public generic functions
disjoint?: Public generic functions
do-2-relation: Public macros
do-bag: Public macros
do-bag-pairs: Public macros
do-list-relation: Public macros
do-map: Public macros
do-map-domain: Public macros
do-seq: Public macros
do-set: Public macros
do-tuple: Public macros
do-tuple-internal: Private macros
do-wb-bag-tree-pairs: Private macros
do-wb-map-tree-pairs: Private macros
do-wb-seq-tree-members: Private macros
do-wb-seq-tree-members-gen: Private macros
do-wb-set-tree-members: Private macros
domain: Public generic functions
domain: Public generic functions
domain: Public generic functions
domain: Public generic functions
domain: Public generic functions
domain-contains?: Public generic functions
domain-contains?: Public generic functions
domain-contains?: Public generic functions
dyn-tuple: Public macros
dyn-tuple-contents: Private ordinary functions
dyn-tuple-descriptor: Private ordinary functions
dyn-tuple?: Private ordinary functions

E
elt: Public standalone methods
empty-2-relation: Public ordinary functions
empty-bag: Public ordinary functions
empty-dyn-tuple: Public ordinary functions
empty-interval-set: Private ordinary functions
empty-list-relation: Public ordinary functions
empty-map: Public ordinary functions
empty-query-registry: Public ordinary functions
empty-seq: Public ordinary functions
empty-set: Public ordinary functions
empty-tuple: Public ordinary functions
empty-wb-2-relation: Public ordinary functions
empty-wb-bag: Public ordinary functions
empty-wb-list-relation: Public ordinary functions
empty-wb-map: Public ordinary functions
empty-wb-seq: Public ordinary functions
empty-wb-set: Public ordinary functions
empty?: Public generic functions
empty?: Public generic functions
empty?: Public generic functions
empty?: Public generic functions
empty?: Public generic functions
empty?: Public generic functions
empty?: Public generic functions
empty?: Public generic functions
empty?: Public generic functions
empty?: Public generic functions
empty?: Public generic functions
equal?: Public ordinary functions
equivalent-bag-alist: Private ordinary functions
equivalent-bag-compare: Private ordinary functions
equivalent-bag-difference: Private ordinary functions
equivalent-bag-intersect: Private ordinary functions
equivalent-bag-product: Private ordinary functions
equivalent-bag-subbag?: Private ordinary functions
equivalent-bag-sum: Private ordinary functions
equivalent-bag-union: Private ordinary functions
equivalent-bag?: Private ordinary functions
equivalent-map-alist: Private ordinary functions
equivalent-map-compare: Private ordinary functions
equivalent-map-difference: Private ordinary functions
equivalent-map-intersect: Private ordinary functions
equivalent-map-less: Private ordinary functions
equivalent-map-restrict: Private ordinary functions
equivalent-map-restrict-not: Private ordinary functions
equivalent-map-union: Private ordinary functions
equivalent-map?: Private ordinary functions
equivalent-set-compare: Private ordinary functions
equivalent-set-difference: Private ordinary functions
equivalent-set-disjoint?: Private ordinary functions
equivalent-set-intersect: Private ordinary functions
equivalent-set-members: Private ordinary functions
equivalent-set-subset?: Private ordinary functions
equivalent-set-union: Private ordinary functions
equivalent-set?: Private ordinary functions
eqv: Private ordinary functions
every: Private ordinary functions
excludef: Public macros
expand-2-relation-constructor-form: Private ordinary functions
expand-bag-constructor-form: Private ordinary functions
expand-map-constructor-form: Private ordinary functions
expand-seq-constructor-form: Private ordinary functions
expand-set-constructor-form: Private ordinary functions
expand-tuple-constructor-form: Private ordinary functions

F
filter: Public generic functions
filter: Public generic functions
filter: Public generic functions
filter: Public generic functions
filter: Public generic functions
filter: Public generic functions
filter: Public generic functions
filter: Public generic functions
filter: Public generic functions
filter: Public generic functions
filter: Public generic functions
filter: Public generic functions
filter: Public generic functions
filter: Public generic functions
filter: Public generic functions
filter: Public generic functions
filter: Public generic functions
filter: Public generic functions
filter: Public generic functions
filter-pairs: Public generic functions
filter-pairs: Public generic functions
filter-pairs: Public generic functions
filter-pairs: Public generic functions
find: Public generic functions
find: Public generic functions
find: Public generic functions
find: Public generic functions
find: Public generic functions
find: Public generic functions
find-if: Public generic functions
find-if: Public generic functions
find-if: Public generic functions
find-if: Public generic functions
find-if: Public generic functions
find-if: Public generic functions
find-if-not: Public generic functions
find-if-not: Public generic functions
find-if-not: Public generic functions
find-if-not: Public generic functions
find-if-not: Public generic functions
find-if-not: Public generic functions
first: Public generic functions
first: Public generic functions
first: Public generic functions
first: Public generic functions
forward-key: Public generic functions
forward-key: Public generic functions
fset-setup-readtable: Public ordinary functions
fset-setup-rereading-readtable: Private ordinary functions
Function, #$-reader: Private ordinary functions
Function, #%-reader: Private ordinary functions
Function, #[-reader: Private ordinary functions
Function, #{-reader: Private ordinary functions
Function, #~-reader: Private ordinary functions
Function, (setf bounded-set-complement?): Private ordinary functions
Function, (setf bounded-set-set): Private ordinary functions
Function, (setf bounded-set-universe): Private ordinary functions
Function, (setf complement-set-complement): Private ordinary functions
Function, (setf dyn-tuple-contents): Private ordinary functions
Function, (setf dyn-tuple-descriptor): Private ordinary functions
Function, (setf equivalent-bag-alist): Private ordinary functions
Function, (setf equivalent-map-alist): Private ordinary functions
Function, (setf equivalent-set-members): Private ordinary functions
Function, (setf interval-kind): Private ordinary functions
Function, (setf interval-lower): Private ordinary functions
Function, (setf interval-set-contents): Private ordinary functions
Function, (setf interval-upper): Private ordinary functions
Function, (setf map-default): Public ordinary functions
Function, (setf my-integer-value): Private ordinary functions
Function, (setf query-registry-arity): Private ordinary functions
Function, (setf query-registry-indices): Private ordinary functions
Function, (setf query-registry-key-index): Private ordinary functions
Function, (setf seq-default): Private ordinary functions
Function, (setf tuple-desc-key-set): Private ordinary functions
Function, (setf tuple-desc-lock): Private ordinary functions
Function, (setf tuple-desc-next-desc-map): Private ordinary functions
Function, (setf tuple-desc-pairs): Private ordinary functions
Function, (setf tuple-desc-reorder-map-map): Private ordinary functions
Function, (setf tuple-desc-serial-number): Private ordinary functions
Function, (setf tuple-key-default-fn): Private ordinary functions
Function, (setf tuple-key-name): Public ordinary functions
Function, (setf tuple-key-number): Private ordinary functions
Function, (setf wb-2-relation-map0): Private ordinary functions
Function, (setf wb-2-relation-map1): Private ordinary functions
Function, (setf wb-2-relation-size): Private ordinary functions
Function, (setf wb-bag-contents): Private ordinary functions
Function, (setf wb-bag-tree-node-count): Private ordinary functions
Function, (setf wb-bag-tree-node-left): Private ordinary functions
Function, (setf wb-bag-tree-node-right): Private ordinary functions
Function, (setf wb-bag-tree-node-size): Private ordinary functions
Function, (setf wb-bag-tree-node-total-count): Private ordinary functions
Function, (setf wb-bag-tree-node-value): Private ordinary functions
Function, (setf wb-list-relation-arity): Private ordinary functions
Function, (setf wb-list-relation-indices): Private ordinary functions
Function, (setf wb-list-relation-tuples): Private ordinary functions
Function, (setf wb-map-contents): Private ordinary functions
Function, (setf wb-map-default): Private ordinary functions
Function, (setf wb-map-tree-node-key): Private ordinary functions
Function, (setf wb-map-tree-node-left): Private ordinary functions
Function, (setf wb-map-tree-node-right): Private ordinary functions
Function, (setf wb-map-tree-node-size): Private ordinary functions
Function, (setf wb-map-tree-node-value): Private ordinary functions
Function, (setf wb-seq-contents): Private ordinary functions
Function, (setf wb-seq-default): Private ordinary functions
Function, (setf wb-seq-tree-node-left): Private ordinary functions
Function, (setf wb-seq-tree-node-right): Private ordinary functions
Function, (setf wb-seq-tree-node-size): Private ordinary functions
Function, (setf wb-set-contents): Private ordinary functions
Function, (setf wb-set-tree-node-left): Private ordinary functions
Function, (setf wb-set-tree-node-right): Private ordinary functions
Function, (setf wb-set-tree-node-size): Private ordinary functions
Function, (setf wb-set-tree-node-value): Private ordinary functions
Function, 2-relation-fn-compose: Private ordinary functions
Function, 2-relation-to-wb-map: Private ordinary functions
Function, 2-relation?: Private ordinary functions
Function, add-to-front: Private ordinary functions
Function, alist-assign: Private ordinary functions
Function, alist-bag-combine: Private ordinary functions
Function, alist-bag-difference: Private ordinary functions
Function, alist-bag-intersection: Private ordinary functions
Function, alist-bag-product: Private ordinary functions
Function, alist-bag-remove: Private ordinary functions
Function, alist-bag-size: Private ordinary functions
Function, alist-bag-sum: Private ordinary functions
Function, alist-bag-union: Private ordinary functions
Function, alist-remove: Private ordinary functions
Function, augmented-mp: Private ordinary functions
Function, augmented-mp-matches?: Private ordinary functions
Function, bag-filter: Private ordinary functions
Function, bag-filter-pairs: Private ordinary functions
Function, bag-from-list: Private ordinary functions
Function, bag-image: Private ordinary functions
Function, bag-reduce: Private ordinary functions
Function, bag-value-size: Private ordinary functions
Function, bag?: Public ordinary functions
Function, base-char-p: Private ordinary functions
Function, bounded-set-complement?: Private ordinary functions
Function, bounded-set-contents: Public ordinary functions
Function, bounded-set-set: Private ordinary functions
Function, bounded-set-universe: Private ordinary functions
Function, bounded-set?: Private ordinary functions
Function, coerce-to-function: Private ordinary functions
Function, coerce-to-function-or-equal?: Private ordinary functions
Function, collection?: Public ordinary functions
Function, compare-intervals: Private ordinary functions
Function, compare-lists-lexicographically: Private ordinary functions
Function, compare-strings: Private ordinary functions
Function, complement-set-complement: Private ordinary functions
Function, complement-set?: Private ordinary functions
Function, copy-equivalent-bag: Private ordinary functions
Function, copy-equivalent-map: Private ordinary functions
Function, copy-equivalent-set: Private ordinary functions
Function, copy-my-integer: Private ordinary functions
Function, copy-query-registry: Private ordinary functions
Function, copy-tuple-desc: Private ordinary functions
Function, copy-tuple-key: Private ordinary functions
Function, copy-wb-bag-tree-node: Private ordinary functions
Function, copy-wb-map-tree-node: Private ordinary functions
Function, copy-wb-seq-tree-node: Private ordinary functions
Function, copy-wb-set-tree-node: Private ordinary functions
Function, dyn-tuple-contents: Private ordinary functions
Function, dyn-tuple-descriptor: Private ordinary functions
Function, dyn-tuple?: Private ordinary functions
Function, empty-2-relation: Public ordinary functions
Function, empty-bag: Public ordinary functions
Function, empty-dyn-tuple: Public ordinary functions
Function, empty-interval-set: Private ordinary functions
Function, empty-list-relation: Public ordinary functions
Function, empty-map: Public ordinary functions
Function, empty-query-registry: Public ordinary functions
Function, empty-seq: Public ordinary functions
Function, empty-set: Public ordinary functions
Function, empty-tuple: Public ordinary functions
Function, empty-wb-2-relation: Public ordinary functions
Function, empty-wb-bag: Public ordinary functions
Function, empty-wb-list-relation: Public ordinary functions
Function, empty-wb-map: Public ordinary functions
Function, empty-wb-seq: Public ordinary functions
Function, empty-wb-set: Public ordinary functions
Function, equal?: Public ordinary functions
Function, equivalent-bag-alist: Private ordinary functions
Function, equivalent-bag-compare: Private ordinary functions
Function, equivalent-bag-difference: Private ordinary functions
Function, equivalent-bag-intersect: Private ordinary functions
Function, equivalent-bag-product: Private ordinary functions
Function, equivalent-bag-subbag?: Private ordinary functions
Function, equivalent-bag-sum: Private ordinary functions
Function, equivalent-bag-union: Private ordinary functions
Function, equivalent-bag?: Private ordinary functions
Function, equivalent-map-alist: Private ordinary functions
Function, equivalent-map-compare: Private ordinary functions
Function, equivalent-map-difference: Private ordinary functions
Function, equivalent-map-intersect: Private ordinary functions
Function, equivalent-map-less: Private ordinary functions
Function, equivalent-map-restrict: Private ordinary functions
Function, equivalent-map-restrict-not: Private ordinary functions
Function, equivalent-map-union: Private ordinary functions
Function, equivalent-map?: Private ordinary functions
Function, equivalent-set-compare: Private ordinary functions
Function, equivalent-set-difference: Private ordinary functions
Function, equivalent-set-disjoint?: Private ordinary functions
Function, equivalent-set-intersect: Private ordinary functions
Function, equivalent-set-members: Private ordinary functions
Function, equivalent-set-subset?: Private ordinary functions
Function, equivalent-set-union: Private ordinary functions
Function, equivalent-set?: Private ordinary functions
Function, eqv: Private ordinary functions
Function, every: Private ordinary functions
Function, expand-2-relation-constructor-form: Private ordinary functions
Function, expand-bag-constructor-form: Private ordinary functions
Function, expand-map-constructor-form: Private ordinary functions
Function, expand-seq-constructor-form: Private ordinary functions
Function, expand-set-constructor-form: Private ordinary functions
Function, expand-tuple-constructor-form: Private ordinary functions
Function, fset-setup-readtable: Public ordinary functions
Function, fset-setup-rereading-readtable: Private ordinary functions
Function, get-indices: Private ordinary functions
Function, get-inverse: Private ordinary functions
Function, get-tuple-key: Public ordinary functions
Function, greater-than?: Private ordinary functions
Function, handle-var-arity: Private ordinary functions
Function, head: Public ordinary functions
Function, interval-kind: Private ordinary functions
Function, interval-kind-symbol: Private ordinary functions
Function, interval-lower: Private ordinary functions
Function, interval-lower-closed?: Private ordinary functions
Function, interval-set-contents: Private ordinary functions
Function, interval-set?: Private ordinary functions
Function, interval-upper: Private ordinary functions
Function, interval-upper-closed?: Private ordinary functions
Function, interval?: Private ordinary functions
Function, lastcons: Public ordinary functions
Function, less-than?: Private ordinary functions
Function, list-insert: Private ordinary functions
Function, list-partition: Private ordinary functions
Function, list-relation?: Private ordinary functions
Function, list-remove: Private ordinary functions
Function, list-set-elt: Private ordinary functions
Function, list-to-wb-2-relation: Private ordinary functions
Function, make-bounded-set: Public ordinary functions
Function, make-bounded-set-internal: Private ordinary functions
Function, make-char: Private ordinary functions
Function, make-complement-set: Private ordinary functions
Function, make-dyn-tuple: Private ordinary functions
Function, make-equivalent-bag: Private ordinary functions
Function, make-equivalent-map: Private ordinary functions
Function, make-equivalent-set: Private ordinary functions
Function, make-interval: Private ordinary functions
Function, make-interval-set: Private ordinary functions
Function, make-lock: Private ordinary functions
Function, make-my-integer: Private ordinary functions
Function, make-query-registry: Private ordinary functions
Function, make-raw-interval: Private ordinary functions
Function, make-raw-wb-bag-tree-node: Private ordinary functions
Function, make-raw-wb-map-tree-node: Private ordinary functions
Function, make-raw-wb-seq-tree-node: Private ordinary functions
Function, make-raw-wb-set-tree-node: Private ordinary functions
Function, make-tuple-desc: Private ordinary functions
Function, make-tuple-desc-internal: Private ordinary functions
Function, make-tuple-key: Private ordinary functions
Function, make-wb-2-relation: Private ordinary functions
Function, make-wb-bag: Private ordinary functions
Function, make-wb-bag-tree-iterator: Private ordinary functions
Function, make-wb-bag-tree-iterator-internal: Private ordinary functions
Function, make-wb-bag-tree-node: Private ordinary functions
Function, make-wb-bag-tree-pair-iterator: Private ordinary functions
Function, make-wb-bag-tree-pair-iterator-internal: Private ordinary functions
Function, make-wb-list-relation: Private ordinary functions
Function, make-wb-map: Private ordinary functions
Function, make-wb-map-tree-iterator: Private ordinary functions
Function, make-wb-map-tree-iterator-internal: Private ordinary functions
Function, make-wb-map-tree-node: Private ordinary functions
Function, make-wb-seq: Private ordinary functions
Function, make-wb-seq-tree-iterator: Private ordinary functions
Function, make-wb-seq-tree-iterator-internal: Private ordinary functions
Function, make-wb-seq-tree-node: Private ordinary functions
Function, make-wb-set: Private ordinary functions
Function, make-wb-set-tree-iterator: Private ordinary functions
Function, make-wb-set-tree-iterator-internal: Private ordinary functions
Function, make-wb-set-tree-node: Private ordinary functions
Function, make-wb-tree-iterator: Private ordinary functions
Function, map-compare: Private ordinary functions
Function, map-default: Public ordinary functions
Function, map-filter: Private ordinary functions
Function, map-fn-compose: Private ordinary functions
Function, map-image: Private ordinary functions
Function, map-key-size: Private ordinary functions
Function, map-reduce: Private ordinary functions
Function, map-sort-and-group: Private ordinary functions
Function, map-to-sets-to-wb-2-relation: Private ordinary functions
Function, map-to-wb-2-relation: Private ordinary functions
Function, map?: Public ordinary functions
Function, member?: Public ordinary functions
Function, my-integer-p: Private ordinary functions
Function, my-integer-value: Private ordinary functions
Function, nonempty?: Public ordinary functions
Function, notany: Private ordinary functions
Function, notevery: Private ordinary functions
Function, pick: Private ordinary functions
Function, print-bounded-set: Private ordinary functions
Function, print-complement-set: Private ordinary functions
Function, print-dyn-tuple: Private ordinary functions
Function, print-interval: Private ordinary functions
Function, print-interval-set: Private ordinary functions
Function, print-tuple-key: Private ordinary functions
Function, print-wb-2-relation: Private ordinary functions
Function, print-wb-bag: Private ordinary functions
Function, print-wb-list-relation: Private ordinary functions
Function, print-wb-map: Private ordinary functions
Function, print-wb-seq: Private ordinary functions
Function, print-wb-set: Private ordinary functions
Function, query-registry-arity: Private ordinary functions
Function, query-registry-indices: Private ordinary functions
Function, query-registry-key-index: Private ordinary functions
Function, query-registry-p: Private ordinary functions
Function, random-test: Private ordinary functions
Function, reduced-tuple: Private ordinary functions
Function, relation?: Private ordinary functions
Function, rereading-#[-reader: Private ordinary functions
Function, rereading-#{-reader: Private ordinary functions
Function, rereading-#~-reader: Private ordinary functions
Function, run-test-suite: Private ordinary functions
Function, seq-compare: Private ordinary functions
Function, seq-default: Private ordinary functions
Function, seq-filter: Private ordinary functions
Function, seq-image: Private ordinary functions
Function, seq-partition: Private ordinary functions
Function, seq-position: Private ordinary functions
Function, seq-reduce: Private ordinary functions
Function, seq?: Public ordinary functions
Function, set-compare: Private ordinary functions
Function, set-filter: Private ordinary functions
Function, set-image: Private ordinary functions
Function, set-partition: Private ordinary functions
Function, set-reduce: Private ordinary functions
Function, set-transitive-closure: Private ordinary functions
Function, set-value-size: Private ordinary functions
Function, set?: Public ordinary functions
Function, some: Private ordinary functions
Function, split: Private ordinary functions
Function, string-insert: Private ordinary functions
Function, string-remove-at: Private ordinary functions
Function, string-seq-to-set: Private ordinary functions
Function, string-subseq: Private ordinary functions
Function, string-subseq-insert: Private ordinary functions
Function, string-update: Private ordinary functions
Function, tail: Public ordinary functions
Function, test-bag-operations: Private ordinary functions
Function, test-bounded-sets: Private ordinary functions
Function, test-cl-generic-sequence-ops: Private ordinary functions
Function, test-compare-lexicographically: Private ordinary functions
Function, test-complement-sets: Private ordinary functions
Function, test-equivalent-sets: Private ordinary functions
Function, test-functional-deep-update: Private ordinary functions
Function, test-map-operations: Private ordinary functions
Function, test-misc: Private ordinary functions
Function, test-modify-macros: Private ordinary functions
Function, test-reader: Private ordinary functions
Function, test-relations: Private ordinary functions
Function, test-rereader: Private ordinary functions
Function, test-seq-operations: Private ordinary functions
Function, test-set-operations: Private ordinary functions
Function, test-tuple-operations: Private ordinary functions
Function, test-type-dispatch-speed: Private ordinary functions
Function, time-index: Private ordinary functions
Function, time-seq-iter: Private ordinary functions
Function, tuple-desc-key-set: Private ordinary functions
Function, tuple-desc-lock: Private ordinary functions
Function, tuple-desc-next-desc-map: Private ordinary functions
Function, tuple-desc-p: Private ordinary functions
Function, tuple-desc-pairs: Private ordinary functions
Function, tuple-desc-reorder-map-map: Private ordinary functions
Function, tuple-desc-serial-number: Private ordinary functions
Function, tuple-get-reorder-map: Private ordinary functions
Function, tuple-key-default-fn: Private ordinary functions
Function, tuple-key-name: Public ordinary functions
Function, tuple-key-number: Private ordinary functions
Function, tuple-key?: Public ordinary functions
Function, tuple-lookup: Private ordinary functions
Function, tuple-make-reorder-map: Private ordinary functions
Function, tuple-random-value: Private ordinary functions
Function, tuple-reorder-keys: Private ordinary functions
Function, tuple-with: Private ordinary functions
Function, tuple?: Public ordinary functions
Function, update: Private ordinary functions
Function, vector-insert: Private ordinary functions
Function, vector-insert-from-string: Private ordinary functions
Function, vector-pair-bag-diff: Private ordinary functions
Function, vector-pair-bag-intersect: Private ordinary functions
Function, vector-pair-bag-product: Private ordinary functions
Function, vector-pair-bag-subbag?: Private ordinary functions
Function, vector-pair-bag-sum: Private ordinary functions
Function, vector-pair-bag-union: Private ordinary functions
Function, vector-pair-diff-2: Private ordinary functions
Function, vector-pair-intersect: Private ordinary functions
Function, vector-pair-restrict: Private ordinary functions
Function, vector-pair-restrict-not: Private ordinary functions
Function, vector-pair-union: Private ordinary functions
Function, vector-remove-at: Private ordinary functions
Function, vector-seq-to-set: Private ordinary functions
Function, vector-set-binary-search: Private ordinary functions
Function, vector-set-binary-search-cfn: Private ordinary functions
Function, vector-set-binary-search-hi: Private ordinary functions
Function, vector-set-binary-search-lo: Private ordinary functions
Function, vector-set-diff: Private ordinary functions
Function, vector-set-diff-2: Private ordinary functions
Function, vector-set-disjoint?: Private ordinary functions
Function, vector-set-intersect: Private ordinary functions
Function, vector-set-subset?: Private ordinary functions
Function, vector-set-union: Private ordinary functions
Function, vector-subseq: Private ordinary functions
Function, vector-subseq-insert: Private ordinary functions
Function, vector-update: Private ordinary functions
Function, vector-update-from-string: Private ordinary functions
Function, wb-2-relation-map0: Private ordinary functions
Function, wb-2-relation-map1: Private ordinary functions
Function, wb-2-relation-size: Private ordinary functions
Function, wb-2-relation?: Private ordinary functions
Function, wb-bag-contents: Private ordinary functions
Function, wb-bag-tree-arb-pair: Private ordinary functions
Function, wb-bag-tree-build-node: Private ordinary functions
Function, wb-bag-tree-compare: Private ordinary functions
Function, wb-bag-tree-compare-rng: Private ordinary functions
Function, wb-bag-tree-concat: Private ordinary functions
Function, wb-bag-tree-diff: Private ordinary functions
Function, wb-bag-tree-diff-rng: Private ordinary functions
Function, wb-bag-tree-find-equivalent: Private ordinary functions
Function, wb-bag-tree-from-list: Private ordinary functions
Function, wb-bag-tree-greatest-pair: Private ordinary functions
Function, wb-bag-tree-intersect: Private ordinary functions
Function, wb-bag-tree-intersect-rng: Private ordinary functions
Function, wb-bag-tree-iterator-canonicalize: Private ordinary functions
Function, wb-bag-tree-iterator-done?: Private ordinary functions
Function, wb-bag-tree-iterator-get: Private ordinary functions
Function, wb-bag-tree-join: Private ordinary functions
Function, wb-bag-tree-least-pair: Private ordinary functions
Function, wb-bag-tree-less: Private ordinary functions
Function, wb-bag-tree-less-minimum: Private ordinary functions
Function, wb-bag-tree-minimum-pair: Private ordinary functions
Function, wb-bag-tree-multiplicity: Private ordinary functions
Function, wb-bag-tree-node-count: Private ordinary functions
Function, wb-bag-tree-node-left: Private ordinary functions
Function, wb-bag-tree-node-print: Private ordinary functions
Function, wb-bag-tree-node-right: Private ordinary functions
Function, wb-bag-tree-node-size: Private ordinary functions
Function, wb-bag-tree-node-total-count: Private ordinary functions
Function, wb-bag-tree-node-value: Private ordinary functions
Function, wb-bag-tree-node?: Private ordinary functions
Function, wb-bag-tree-pair-iterator-canonicalize: Private ordinary functions
Function, wb-bag-tree-pair-iterator-done?: Private ordinary functions
Function, wb-bag-tree-pair-iterator-get: Private ordinary functions
Function, wb-bag-tree-product: Private ordinary functions
Function, wb-bag-tree-product-rng: Private ordinary functions
Function, wb-bag-tree-rank: Private ordinary functions
Function, wb-bag-tree-rank-pair: Private ordinary functions
Function, wb-bag-tree-rank-pair-internal: Private ordinary functions
Function, wb-bag-tree-rank-trim: Private ordinary functions
Function, wb-bag-tree-size: Private ordinary functions
Function, wb-bag-tree-split: Private ordinary functions
Function, wb-bag-tree-subbag?: Private ordinary functions
Function, wb-bag-tree-subbag?-rng: Private ordinary functions
Function, wb-bag-tree-sum: Private ordinary functions
Function, wb-bag-tree-sum-rng: Private ordinary functions
Function, wb-bag-tree-to-set-tree: Private ordinary functions
Function, wb-bag-tree-total-count: Private ordinary functions
Function, wb-bag-tree-trim: Private ordinary functions
Function, wb-bag-tree-union: Private ordinary functions
Function, wb-bag-tree-union-rng: Private ordinary functions
Function, wb-bag-tree-vector-pair-sum: Private ordinary functions
Function, wb-bag-tree-vector-pair-union: Private ordinary functions
Function, wb-bag-tree-verify: Private ordinary functions
Function, wb-bag-tree-verify-rng: Private ordinary functions
Function, wb-bag-tree-with: Private ordinary functions
Function, wb-bag?: Private ordinary functions
Function, wb-list-relation-arity: Private ordinary functions
Function, wb-list-relation-indices: Private ordinary functions
Function, wb-list-relation-tuples: Private ordinary functions
Function, wb-list-relation?: Private ordinary functions
Function, wb-map-contents: Private ordinary functions
Function, wb-map-default: Private ordinary functions
Function, wb-map-from-cl-sequence: Private ordinary functions
Function, wb-map-from-list: Private ordinary functions
Function, wb-map-tree-arb-pair: Private ordinary functions
Function, wb-map-tree-build-node: Private ordinary functions
Function, wb-map-tree-compare: Private ordinary functions
Function, wb-map-tree-compare-rng: Private ordinary functions
Function, wb-map-tree-compose: Private ordinary functions
Function, wb-map-tree-concat: Private ordinary functions
Function, wb-map-tree-concat-maybe: Private ordinary functions
Function, wb-map-tree-diff-2: Private ordinary functions
Function, wb-map-tree-diff-2-rng: Private ordinary functions
Function, wb-map-tree-domain: Private ordinary functions
Function, wb-map-tree-find-equivalent: Private ordinary functions
Function, wb-map-tree-greatest-pair: Private ordinary functions
Function, wb-map-tree-intersect: Private ordinary functions
Function, wb-map-tree-intersect-rng: Private ordinary functions
Function, wb-map-tree-iterator-canonicalize: Private ordinary functions
Function, wb-map-tree-iterator-done?: Private ordinary functions
Function, wb-map-tree-iterator-get: Private ordinary functions
Function, wb-map-tree-join: Private ordinary functions
Function, wb-map-tree-least-pair: Private ordinary functions
Function, wb-map-tree-less: Private ordinary functions
Function, wb-map-tree-less-minimum: Private ordinary functions
Function, wb-map-tree-lookup: Private ordinary functions
Function, wb-map-tree-minimum-pair: Private ordinary functions
Function, wb-map-tree-node-key: Private ordinary functions
Function, wb-map-tree-node-left: Private ordinary functions
Function, wb-map-tree-node-print: Private ordinary functions
Function, wb-map-tree-node-right: Private ordinary functions
Function, wb-map-tree-node-size: Private ordinary functions
Function, wb-map-tree-node-value: Private ordinary functions
Function, wb-map-tree-node?: Private ordinary functions
Function, wb-map-tree-rank: Private ordinary functions
Function, wb-map-tree-rank-pair: Private ordinary functions
Function, wb-map-tree-rank-pair-internal: Private ordinary functions
Function, wb-map-tree-rank-trim: Private ordinary functions
Function, wb-map-tree-restrict: Private ordinary functions
Function, wb-map-tree-restrict-not: Private ordinary functions
Function, wb-map-tree-restrict-not-rng: Private ordinary functions
Function, wb-map-tree-restrict-rng: Private ordinary functions
Function, wb-map-tree-size: Private ordinary functions
Function, wb-map-tree-split: Private ordinary functions
Function, wb-map-tree-trim: Private ordinary functions
Function, wb-map-tree-union: Private ordinary functions
Function, wb-map-tree-union-rng: Private ordinary functions
Function, wb-map-tree-vector-pair-union: Private ordinary functions
Function, wb-map-tree-verify: Private ordinary functions
Function, wb-map-tree-verify-rng: Private ordinary functions
Function, wb-map-tree-with: Private ordinary functions
Function, wb-map?: Private ordinary functions
Function, wb-seq-contents: Private ordinary functions
Function, wb-seq-default: Private ordinary functions
Function, wb-seq-tree-append: Private ordinary functions
Function, wb-seq-tree-build-node: Private ordinary functions
Function, wb-seq-tree-compare: Private ordinary functions
Function, wb-seq-tree-compare-lexicographically: Private ordinary functions
Function, wb-seq-tree-compare-rng: Private ordinary functions
Function, wb-seq-tree-concat: Private ordinary functions
Function, wb-seq-tree-from-list: Private ordinary functions
Function, wb-seq-tree-from-vector: Private ordinary functions
Function, wb-seq-tree-insert: Private ordinary functions
Function, wb-seq-tree-iterator-canonicalize: Private ordinary functions
Function, wb-seq-tree-iterator-done?: Private ordinary functions
Function, wb-seq-tree-iterator-get: Private ordinary functions
Function, wb-seq-tree-node-left: Private ordinary functions
Function, wb-seq-tree-node-print: Private ordinary functions
Function, wb-seq-tree-node-right: Private ordinary functions
Function, wb-seq-tree-node-size: Private ordinary functions
Function, wb-seq-tree-node?: Private ordinary functions
Function, wb-seq-tree-remove: Private ordinary functions
Function, wb-seq-tree-reverse: Private ordinary functions
Function, wb-seq-tree-size: Private ordinary functions
Function, wb-seq-tree-subscript: Private ordinary functions
Function, wb-seq-tree-subseq: Private ordinary functions
Function, wb-seq-tree-to-list: Private ordinary functions
Function, wb-seq-tree-to-set-tree: Private ordinary functions
Function, wb-seq-tree-to-string: Private ordinary functions
Function, wb-seq-tree-to-vector: Private ordinary functions
Function, wb-seq-tree-trim: Private ordinary functions
Function, wb-seq-tree-verify: Private ordinary functions
Function, wb-seq-tree-with: Private ordinary functions
Function, wb-seq?: Private ordinary functions
Function, wb-set-contents: Private ordinary functions
Function, wb-set-tree-arb: Private ordinary functions
Function, wb-set-tree-build-node: Private ordinary functions
Function, wb-set-tree-compare: Private ordinary functions
Function, wb-set-tree-compare-rng: Private ordinary functions
Function, wb-set-tree-concat: Private ordinary functions
Function, wb-set-tree-diff: Private ordinary functions
Function, wb-set-tree-diff-2: Private ordinary functions
Function, wb-set-tree-diff-2-rng: Private ordinary functions
Function, wb-set-tree-diff-rng: Private ordinary functions
Function, wb-set-tree-disjoint?: Private ordinary functions
Function, wb-set-tree-disjoint?-rng: Private ordinary functions
Function, wb-set-tree-find-equal: Private ordinary functions
Function, wb-set-tree-find-equivalent: Private ordinary functions
Function, wb-set-tree-find-rank: Private ordinary functions
Function, wb-set-tree-from-cl-sequence: Private ordinary functions
Function, wb-set-tree-from-list: Private ordinary functions
Function, wb-set-tree-greatest: Private ordinary functions
Function, wb-set-tree-intersect: Private ordinary functions
Function, wb-set-tree-intersect-rng: Private ordinary functions
Function, wb-set-tree-iterator-canonicalize: Private ordinary functions
Function, wb-set-tree-iterator-done?: Private ordinary functions
Function, wb-set-tree-iterator-get: Private ordinary functions
Function, wb-set-tree-join: Private ordinary functions
Function, wb-set-tree-least: Private ordinary functions
Function, wb-set-tree-less: Private ordinary functions
Function, wb-set-tree-less-minimum: Private ordinary functions
Function, wb-set-tree-member?: Private ordinary functions
Function, wb-set-tree-member?-cfn: Private ordinary functions
Function, wb-set-tree-minimum-value: Private ordinary functions
Function, wb-set-tree-node-left: Private ordinary functions
Function, wb-set-tree-node-print: Private ordinary functions
Function, wb-set-tree-node-right: Private ordinary functions
Function, wb-set-tree-node-size: Private ordinary functions
Function, wb-set-tree-node-value: Private ordinary functions
Function, wb-set-tree-node?: Private ordinary functions
Function, wb-set-tree-rank: Private ordinary functions
Function, wb-set-tree-rank-element: Private ordinary functions
Function, wb-set-tree-rank-element-internal: Private ordinary functions
Function, wb-set-tree-rank-trim: Private ordinary functions
Function, wb-set-tree-size: Private ordinary functions
Function, wb-set-tree-split: Private ordinary functions
Function, wb-set-tree-split-above: Private ordinary functions
Function, wb-set-tree-split-below: Private ordinary functions
Function, wb-set-tree-subset?: Private ordinary functions
Function, wb-set-tree-subset?-rng: Private ordinary functions
Function, wb-set-tree-to-bag-tree: Private ordinary functions
Function, wb-set-tree-trim: Private ordinary functions
Function, wb-set-tree-union: Private ordinary functions
Function, wb-set-tree-union-rng: Private ordinary functions
Function, wb-set-tree-vector-union: Private ordinary functions
Function, wb-set-tree-verify: Private ordinary functions
Function, wb-set-tree-verify-rng: Private ordinary functions
Function, wb-set-tree-with: Private ordinary functions
Function, wb-set?: Private ordinary functions
Function, wb-tree-max-depth: Private ordinary functions
Function, wb-tree-true-max-depth: Private ordinary functions
Function, xconcat: Private ordinary functions
Function, ximage: Private ordinary functions

G
gen: Private macros
Generic Function, (setf my-identity-ordered-obj-value): Private generic functions
Generic Function, (setf my-sequence-actual): Private generic functions
Generic Function, (setf my-unhandled-obj-value): Private generic functions
Generic Function, (setf serial-number): Private generic functions
Generic Function, all-queries: Public generic functions
Generic Function, arb: Public generic functions
Generic Function, arity: Public generic functions
Generic Function, at-rank: Public generic functions
Generic Function, bag-difference: Public generic functions
Generic Function, bag-product: Public generic functions
Generic Function, bag-sum: Public generic functions
Generic Function, cartesian-product: Private generic functions
Generic Function, compare: Public generic functions
Generic Function, compare-lexicographically: Public generic functions
Generic Function, complement: Public generic functions
Generic Function, compose: Public generic functions
Generic Function, concat: Public generic functions
Generic Function, conflicts: Public generic functions
Generic Function, contains?: Public generic functions
Generic Function, convert: Public generic functions
Generic Function, count: Public generic functions
Generic Function, count-if: Public generic functions
Generic Function, count-if-not: Public generic functions
Generic Function, default: Private generic functions
Generic Function, disjoint?: Public generic functions
Generic Function, domain: Public generic functions
Generic Function, domain-contains?: Public generic functions
Generic Function, empty?: Public generic functions
Generic Function, filter: Public generic functions
Generic Function, filter-pairs: Public generic functions
Generic Function, find: Public generic functions
Generic Function, find-if: Public generic functions
Generic Function, find-if-not: Public generic functions
Generic Function, first: Public generic functions
Generic Function, forward-key: Public generic functions
Generic Function, greatest: Public generic functions
Generic Function, image: Public generic functions
Generic Function, insert: Public generic functions
Generic Function, internal-do-2-relation: Private generic functions
Generic Function, internal-do-bag-pairs: Private generic functions
Generic Function, internal-do-list-relation: Private generic functions
Generic Function, internal-do-map: Private generic functions
Generic Function, internal-do-seq: Private generic functions
Generic Function, internal-do-set: Private generic functions
Generic Function, internal-do-tuple: Private generic functions
Generic Function, intersection: Public generic functions
Generic Function, inverse: Public generic functions
Generic Function, iterator: Public generic functions
Generic Function, join: Public generic functions
Generic Function, last: Public generic functions
Generic Function, least: Public generic functions
Generic Function, less: Public generic functions
Generic Function, less-first: Public generic functions
Generic Function, less-interval: Private generic functions
Generic Function, less-last: Public generic functions
Generic Function, less-query: Public generic functions
Generic Function, lookup: Public generic functions
Generic Function, lookup-inv: Public generic functions
Generic Function, lookup-multi: Public generic functions
Generic Function, lookup-multi-restricted: Public generic functions
Generic Function, lookup-restricted: Public generic functions
Generic Function, map-difference-2: Public generic functions
Generic Function, map-intersection: Public generic functions
Generic Function, map-union: Public generic functions
Generic Function, multiplicity: Public generic functions
Generic Function, my-identity-ordered-obj-value: Private generic functions
Generic Function, my-sequence-actual: Private generic functions
Generic Function, my-unhandled-obj-value: Private generic functions
Generic Function, partition: Public generic functions
Generic Function, position: Public generic functions
Generic Function, position-if: Public generic functions
Generic Function, position-if-not: Public generic functions
Generic Function, query: Public generic functions
Generic Function, query-multi: Public generic functions
Generic Function, range: Public generic functions
Generic Function, range-contains?: Public generic functions
Generic Function, rank: Public generic functions
Generic Function, reduce: Public generic functions
Generic Function, remove: Public generic functions
Generic Function, remove-if: Public generic functions
Generic Function, remove-if-not: Public generic functions
Generic Function, restrict: Public generic functions
Generic Function, restrict-not: Public generic functions
Generic Function, reverse: Public generic functions
Generic Function, serial-number: Private generic functions
Generic Function, set-difference: Public generic functions
Generic Function, set-difference-2: Public generic functions
Generic Function, set-size: Public generic functions
Generic Function, size: Public generic functions
Generic Function, sort: Public generic functions
Generic Function, sort-and-group: Private generic functions
Generic Function, splice: Public generic functions
Generic Function, split-above: Public generic functions
Generic Function, split-below: Public generic functions
Generic Function, split-from: Public generic functions
Generic Function, split-through: Public generic functions
Generic Function, stable-sort: Public generic functions
Generic Function, subbag?: Public generic functions
Generic Function, subseq: Public generic functions
Generic Function, subset?: Public generic functions
Generic Function, substitute: Public generic functions
Generic Function, substitute-if: Public generic functions
Generic Function, substitute-if-not: Public generic functions
Generic Function, transitive-closure: Private generic functions
Generic Function, tuple-merge: Public generic functions
Generic Function, union: Public generic functions
Generic Function, verify: Private generic functions
Generic Function, with: Public generic functions
Generic Function, with-default: Public generic functions
Generic Function, with-first: Public generic functions
Generic Function, with-interval: Private generic functions
Generic Function, with-last: Public generic functions
Generic Function, with-query: Public generic functions
get-indices: Private ordinary functions
get-inverse: Private ordinary functions
get-tuple-key: Public ordinary functions
greater-than?: Private ordinary functions
greatest: Public generic functions
greatest: Public generic functions
greatest: Public generic functions
greatest: Public generic functions
greatest: Public generic functions

H
handle-var-arity: Private ordinary functions
head: Public ordinary functions

I
image: Public generic functions
image: Public generic functions
image: Public generic functions
image: Public generic functions
image: Public generic functions
image: Public generic functions
image: Public generic functions
image: Public generic functions
image: Public generic functions
image: Public generic functions
image: Public generic functions
image: Public generic functions
image: Public generic functions
image: Public generic functions
image: Public generic functions
image: Public generic functions
image: Public generic functions
image: Public generic functions
image: Public generic functions
image: Public generic functions
image: Public generic functions
image: Public generic functions
image: Public generic functions
image: Public generic functions
imagef: Public macros
includef: Public macros
insert: Public generic functions
insert: Public generic functions
internal-do-2-relation: Private generic functions
internal-do-2-relation: Private generic functions
internal-do-bag-pairs: Private generic functions
internal-do-bag-pairs: Private generic functions
internal-do-list-relation: Private generic functions
internal-do-list-relation: Private generic functions
internal-do-map: Private generic functions
internal-do-map: Private generic functions
internal-do-seq: Private generic functions
internal-do-seq: Private generic functions
internal-do-set: Private generic functions
internal-do-set: Private generic functions
internal-do-set: Private generic functions
internal-do-set: Private generic functions
internal-do-tuple: Private generic functions
internal-do-tuple: Private generic functions
intersectf: Public macros
intersection: Public generic functions
intersection: Public generic functions
intersection: Public generic functions
intersection: Public generic functions
intersection: Public generic functions
intersection: Public generic functions
intersection: Public generic functions
intersection: Public generic functions
intersection: Public generic functions
intersection: Public generic functions
intersection: Public generic functions
intersection: Public generic functions
interval-kind: Private ordinary functions
interval-kind-symbol: Private ordinary functions
interval-lower: Private ordinary functions
interval-lower-closed?: Private ordinary functions
interval-set-contents: Private ordinary functions
interval-set?: Private ordinary functions
interval-upper: Private ordinary functions
interval-upper-closed?: Private ordinary functions
interval?: Private ordinary functions
inverse: Public generic functions
inverse: Public generic functions
iterator: Public generic functions
iterator: Public generic functions
iterator: Public generic functions
iterator: Public generic functions
iterator: Public generic functions
iterator: Public generic functions
iterator: Public generic functions
iterator: Public generic functions
iterator: Public generic functions
iterator: Public generic functions

J
join: Public generic functions
join: Public generic functions

L
last: Public generic functions
last: Public generic functions
last: Public generic functions
last: Public generic functions
lastcons: Public ordinary functions
least: Public generic functions
least: Public generic functions
least: Public generic functions
least: Public generic functions
least: Public generic functions
length: Public standalone methods
length-nv: Private macros
less: Public generic functions
less: Public generic functions
less: Public generic functions
less: Public generic functions
less: Public generic functions
less: Public generic functions
less: Public generic functions
less: Public generic functions
less: Public generic functions
less: Public generic functions
less-first: Public generic functions
less-first: Public generic functions
less-interval: Private generic functions
less-interval: Private generic functions
less-last: Public generic functions
less-last: Public generic functions
less-query: Public generic functions
less-query: Public generic functions
less-than?: Private ordinary functions
list-insert: Private ordinary functions
list-partition: Private ordinary functions
list-relation?: Private ordinary functions
list-remove: Private ordinary functions
list-set-elt: Private ordinary functions
list-to-wb-2-relation: Private ordinary functions
lookup: Public generic functions
lookup: Public generic functions
lookup: Public generic functions
lookup: Public generic functions
lookup: Public generic functions
lookup: Public generic functions
lookup: Public generic functions
lookup: Public generic functions
lookup: Public generic functions
lookup-inv: Public generic functions
lookup-inv: Public generic functions
lookup-multi: Public generic functions
lookup-multi: Public generic functions
lookup-multi-restricted: Public generic functions
lookup-multi-restricted: Public generic functions
lookup-restricted: Public generic functions
lookup-restricted: Public generic functions

M
Macro, 2-relation: Public macros
Macro, @: Public macros
Macro, adjoinf: Public macros
Macro, appendf: Public macros
Macro, bag: Public macros
Macro, check-three-arguments: Private macros
Macro, check-two-arguments: Private macros
Macro, compare-slots: Public macros
Macro, composef: Public macros
Macro, def-tuple-key: Public macros
Macro, define-cross-type-compare-methods: Public macros
Macro, define-tuple-key: Public macros
Macro, do-2-relation: Public macros
Macro, do-bag: Public macros
Macro, do-bag-pairs: Public macros
Macro, do-list-relation: Public macros
Macro, do-map: Public macros
Macro, do-map-domain: Public macros
Macro, do-seq: Public macros
Macro, do-set: Public macros
Macro, do-tuple: Public macros
Macro, do-tuple-internal: Private macros
Macro, do-wb-bag-tree-pairs: Private macros
Macro, do-wb-map-tree-pairs: Private macros
Macro, do-wb-seq-tree-members: Private macros
Macro, do-wb-seq-tree-members-gen: Private macros
Macro, do-wb-set-tree-members: Private macros
Macro, dyn-tuple: Public macros
Macro, excludef: Public macros
Macro, gen: Private macros
Macro, imagef: Public macros
Macro, includef: Public macros
Macro, intersectf: Public macros
Macro, length-nv: Private macros
Macro, map: Public macros
Macro, pop-first: Public macros
Macro, pop-last: Public macros
Macro, prependf: Public macros
Macro, push-first: Public macros
Macro, push-last: Public macros
Macro, read-memory-barrier: Private macros
Macro, removef: Public macros
Macro, seq: Public macros
Macro, set: Public macros
Macro, tuple: Public macros
Macro, tuple-window-size: Private macros
Macro, unionf: Public macros
Macro, wb-2-relation: Public macros
Macro, wb-bag: Public macros
Macro, wb-map: Public macros
Macro, wb-seq: Public macros
Macro, wb-set: Public macros
Macro, while: Private macros
Macro, with-lock: Private macros
Macro, write-memory-barrier: Private macros
make-bounded-set: Public ordinary functions
make-bounded-set-internal: Private ordinary functions
make-char: Private ordinary functions
make-complement-set: Private ordinary functions
make-dyn-tuple: Private ordinary functions
make-equivalent-bag: Private ordinary functions
make-equivalent-map: Private ordinary functions
make-equivalent-set: Private ordinary functions
make-interval: Private ordinary functions
make-interval-set: Private ordinary functions
make-lock: Private ordinary functions
make-my-integer: Private ordinary functions
make-query-registry: Private ordinary functions
make-raw-interval: Private ordinary functions
make-raw-wb-bag-tree-node: Private ordinary functions
make-raw-wb-map-tree-node: Private ordinary functions
make-raw-wb-seq-tree-node: Private ordinary functions
make-raw-wb-set-tree-node: Private ordinary functions
make-sequence-like: Public standalone methods
make-tuple-desc: Private ordinary functions
make-tuple-desc-internal: Private ordinary functions
make-tuple-key: Private ordinary functions
make-wb-2-relation: Private ordinary functions
make-wb-bag: Private ordinary functions
make-wb-bag-tree-iterator: Private ordinary functions
make-wb-bag-tree-iterator-internal: Private ordinary functions
make-wb-bag-tree-node: Private ordinary functions
make-wb-bag-tree-pair-iterator: Private ordinary functions
make-wb-bag-tree-pair-iterator-internal: Private ordinary functions
make-wb-list-relation: Private ordinary functions
make-wb-map: Private ordinary functions
make-wb-map-tree-iterator: Private ordinary functions
make-wb-map-tree-iterator-internal: Private ordinary functions
make-wb-map-tree-node: Private ordinary functions
make-wb-seq: Private ordinary functions
make-wb-seq-tree-iterator: Private ordinary functions
make-wb-seq-tree-iterator-internal: Private ordinary functions
make-wb-seq-tree-node: Private ordinary functions
make-wb-set: Private ordinary functions
make-wb-set-tree-iterator: Private ordinary functions
make-wb-set-tree-iterator-internal: Private ordinary functions
make-wb-set-tree-node: Private ordinary functions
make-wb-tree-iterator: Private ordinary functions
map: Public macros
map-compare: Private ordinary functions
map-default: Public ordinary functions
map-difference-2: Public generic functions
map-difference-2: Public generic functions
map-filter: Private ordinary functions
map-fn-compose: Private ordinary functions
map-image: Private ordinary functions
map-intersection: Public generic functions
map-intersection: Public generic functions
map-key-size: Private ordinary functions
map-reduce: Private ordinary functions
map-sort-and-group: Private ordinary functions
map-to-sets-to-wb-2-relation: Private ordinary functions
map-to-wb-2-relation: Private ordinary functions
map-union: Public generic functions
map-union: Public generic functions
map?: Public ordinary functions
member?: Public ordinary functions
Method, (setf elt): Public standalone methods
Method, (setf my-identity-ordered-obj-value): Private generic functions
Method, (setf my-sequence-actual): Private generic functions
Method, (setf my-unhandled-obj-value): Private generic functions
Method, (setf serial-number): Private generic functions
Method, adjust-sequence: Public standalone methods
Method, all-queries: Public generic functions
Method, arb: Public generic functions
Method, arb: Public generic functions
Method, arb: Public generic functions
Method, arb: Public generic functions
Method, arb: Public generic functions
Method, arb: Public generic functions
Method, arb: Public generic functions
Method, arity: Public generic functions
Method, arity: Public generic functions
Method, arity: Public generic functions
Method, at-rank: Public generic functions
Method, at-rank: Public generic functions
Method, at-rank: Public generic functions
Method, bag-difference: Public generic functions
Method, bag-difference: Public generic functions
Method, bag-difference: Public generic functions
Method, bag-product: Public generic functions
Method, bag-product: Public generic functions
Method, bag-product: Public generic functions
Method, bag-sum: Public generic functions
Method, bag-sum: Public generic functions
Method, bag-sum: Public generic functions
Method, cartesian-product: Private generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare: Public generic functions
Method, compare-lexicographically: Public generic functions
Method, compare-lexicographically: Public generic functions
Method, compare-lexicographically: Public generic functions
Method, compare-lexicographically: Public generic functions
Method, complement: Public generic functions
Method, complement: Public generic functions
Method, complement: Public generic functions
Method, complement: Public generic functions
Method, compose: Public generic functions
Method, compose: Public generic functions
Method, compose: Public generic functions
Method, compose: Public generic functions
Method, compose: Public generic functions
Method, compose: Public generic functions
Method, compose: Public generic functions
Method, compose: Public generic functions
Method, compose: Public generic functions
Method, concat: Public generic functions
Method, concat: Public generic functions
Method, conflicts: Public generic functions
Method, contains?: Public generic functions
Method, contains?: Public generic functions
Method, contains?: Public generic functions
Method, contains?: Public generic functions
Method, contains?: Public generic functions
Method, contains?: Public generic functions
Method, contains?: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, convert: Public generic functions
Method, count: Public generic functions
Method, count: Public generic functions
Method, count: Public generic functions
Method, count: Public generic functions
Method, count: Public generic functions
Method, count-if: Public generic functions
Method, count-if: Public generic functions
Method, count-if: Public generic functions
Method, count-if: Public generic functions
Method, count-if: Public generic functions
Method, count-if-not: Public generic functions
Method, count-if-not: Public generic functions
Method, count-if-not: Public generic functions
Method, count-if-not: Public generic functions
Method, count-if-not: Public generic functions
Method, default: Private generic functions
Method, default: Private generic functions
Method, disjoint?: Public generic functions
Method, disjoint?: Public generic functions
Method, disjoint?: Public generic functions
Method, disjoint?: Public generic functions
Method, disjoint?: Public generic functions
Method, domain: Public generic functions
Method, domain: Public generic functions
Method, domain: Public generic functions
Method, domain: Public generic functions
Method, domain-contains?: Public generic functions
Method, domain-contains?: Public generic functions
Method, elt: Public standalone methods
Method, empty?: Public generic functions
Method, empty?: Public generic functions
Method, empty?: Public generic functions
Method, empty?: Public generic functions
Method, empty?: Public generic functions
Method, empty?: Public generic functions
Method, empty?: Public generic functions
Method, empty?: Public generic functions
Method, empty?: Public generic functions
Method, empty?: Public generic functions
Method, filter: Public generic functions
Method, filter: Public generic functions
Method, filter: Public generic functions
Method, filter: Public generic functions
Method, filter: Public generic functions
Method, filter: Public generic functions
Method, filter: Public generic functions
Method, filter: Public generic functions
Method, filter: Public generic functions
Method, filter: Public generic functions
Method, filter: Public generic functions
Method, filter: Public generic functions
Method, filter: Public generic functions
Method, filter: Public generic functions
Method, filter: Public generic functions
Method, filter: Public generic functions
Method, filter: Public generic functions
Method, filter: Public generic functions
Method, filter-pairs: Public generic functions
Method, filter-pairs: Public generic functions
Method, filter-pairs: Public generic functions
Method, find: Public generic functions
Method, find: Public generic functions
Method, find: Public generic functions
Method, find: Public generic functions
Method, find: Public generic functions
Method, find-if: Public generic functions
Method, find-if: Public generic functions
Method, find-if: Public generic functions
Method, find-if: Public generic functions
Method, find-if: Public generic functions
Method, find-if-not: Public generic functions
Method, find-if-not: Public generic functions
Method, find-if-not: Public generic functions
Method, find-if-not: Public generic functions
Method, find-if-not: Public generic functions
Method, first: Public generic functions
Method, first: Public generic functions
Method, first: Public generic functions
Method, forward-key: Public generic functions
Method, greatest: Public generic functions
Method, greatest: Public generic functions
Method, greatest: Public generic functions
Method, greatest: Public generic functions
Method, image: Public generic functions
Method, image: Public generic functions
Method, image: Public generic functions
Method, image: Public generic functions
Method, image: Public generic functions
Method, image: Public generic functions
Method, image: Public generic functions
Method, image: Public generic functions
Method, image: Public generic functions
Method, image: Public generic functions
Method, image: Public generic functions
Method, image: Public generic functions
Method, image: Public generic functions
Method, image: Public generic functions
Method, image: Public generic functions
Method, image: Public generic functions
Method, image: Public generic functions
Method, image: Public generic functions
Method, image: Public generic functions
Method, image: Public generic functions
Method, image: Public generic functions
Method, image: Public generic functions
Method, image: Public generic functions
Method, insert: Public generic functions
Method, internal-do-2-relation: Private generic functions
Method, internal-do-bag-pairs: Private generic functions
Method, internal-do-list-relation: Private generic functions
Method, internal-do-map: Private generic functions
Method, internal-do-seq: Private generic functions
Method, internal-do-set: Private generic functions
Method, internal-do-set: Private generic functions
Method, internal-do-set: Private generic functions
Method, internal-do-tuple: Private generic functions
Method, intersection: Public generic functions
Method, intersection: Public generic functions
Method, intersection: Public generic functions
Method, intersection: Public generic functions
Method, intersection: Public generic functions
Method, intersection: Public generic functions
Method, intersection: Public generic functions
Method, intersection: Public generic functions
Method, intersection: Public generic functions
Method, intersection: Public generic functions
Method, intersection: Public generic functions
Method, inverse: Public generic functions
Method, iterator: Public generic functions
Method, iterator: Public generic functions
Method, iterator: Public generic functions
Method, iterator: Public generic functions
Method, iterator: Public generic functions
Method, iterator: Public generic functions
Method, iterator: Public generic functions
Method, iterator: Public generic functions
Method, iterator: Public generic functions
Method, join: Public generic functions
Method, last: Public generic functions
Method, last: Public generic functions
Method, last: Public generic functions
Method, least: Public generic functions
Method, least: Public generic functions
Method, least: Public generic functions
Method, least: Public generic functions
Method, length: Public standalone methods
Method, less: Public generic functions
Method, less: Public generic functions
Method, less: Public generic functions
Method, less: Public generic functions
Method, less: Public generic functions
Method, less: Public generic functions
Method, less: Public generic functions
Method, less: Public generic functions
Method, less: Public generic functions
Method, less-first: Public generic functions
Method, less-interval: Private generic functions
Method, less-last: Public generic functions
Method, less-query: Public generic functions
Method, lookup: Public generic functions
Method, lookup: Public generic functions
Method, lookup: Public generic functions
Method, lookup: Public generic functions
Method, lookup: Public generic functions
Method, lookup: Public generic functions
Method, lookup: Public generic functions
Method, lookup: Public generic functions
Method, lookup-inv: Public generic functions
Method, lookup-multi: Public generic functions
Method, lookup-multi-restricted: Public generic functions
Method, lookup-restricted: Public generic functions
Method, make-sequence-like: Public standalone methods
Method, map-difference-2: Public generic functions
Method, map-intersection: Public generic functions
Method, map-union: Public generic functions
Method, multiplicity: Public generic functions
Method, multiplicity: Public generic functions
Method, my-identity-ordered-obj-value: Private generic functions
Method, my-sequence-actual: Private generic functions
Method, my-unhandled-obj-value: Private generic functions
Method, partition: Public generic functions
Method, partition: Public generic functions
Method, partition: Public generic functions
Method, partition: Public generic functions
Method, partition: Public generic functions
Method, partition: Public generic functions
Method, partition: Public generic functions
Method, partition: Public generic functions
Method, partition: Public generic functions
Method, partition: Public generic functions
Method, position: Public generic functions
Method, position: Public generic functions
Method, position-if: Public generic functions
Method, position-if: Public generic functions
Method, position-if-not: Public generic functions
Method, position-if-not: Public generic functions
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, query: Public generic functions
Method, query-multi: Public generic functions
Method, range: Public generic functions
Method, range: Public generic functions
Method, range: Public generic functions
Method, range-contains?: Public generic functions
Method, range-contains?: Public generic functions
Method, rank: Public generic functions
Method, rank: Public generic functions
Method, rank: Public generic functions
Method, reduce: Public generic functions
Method, reduce: Public generic functions
Method, reduce: Public generic functions
Method, reduce: Public generic functions
Method, reduce: Public generic functions
Method, reduce: Public generic functions
Method, reduce: Public generic functions
Method, reduce: Public generic functions
Method, reduce: Public generic functions
Method, remove: Public generic functions
Method, remove: Public generic functions
Method, remove-if: Public generic functions
Method, remove-if: Public generic functions
Method, remove-if-not: Public generic functions
Method, remove-if-not: Public generic functions
Method, restrict: Public generic functions
Method, restrict: Public generic functions
Method, restrict-not: Public generic functions
Method, restrict-not: Public generic functions
Method, reverse: Public generic functions
Method, reverse: Public generic functions
Method, serial-number: Private generic functions
Method, set-difference: Public generic functions
Method, set-difference: Public generic functions
Method, set-difference: Public generic functions
Method, set-difference: Public generic functions
Method, set-difference: Public generic functions
Method, set-difference: Public generic functions
Method, set-difference: Public generic functions
Method, set-difference-2: Public generic functions
Method, set-size: Public generic functions
Method, set-size: Public generic functions
Method, size: Public generic functions
Method, size: Public generic functions
Method, size: Public generic functions
Method, size: Public generic functions
Method, size: Public generic functions
Method, size: Public generic functions
Method, size: Public generic functions
Method, size: Public generic functions
Method, size: Public generic functions
Method, size: Public generic functions
Method, sort: Public generic functions
Method, sort: Public generic functions
Method, sort: Public generic functions
Method, sort-and-group: Private generic functions
Method, splice: Public generic functions
Method, split-above: Public generic functions
Method, split-below: Public generic functions
Method, split-from: Public generic functions
Method, split-through: Public generic functions
Method, stable-sort: Public generic functions
Method, stable-sort: Public generic functions
Method, stable-sort: Public generic functions
Method, subbag?: Public generic functions
Method, subbag?: Public generic functions
Method, subbag?: Public generic functions
Method, subseq: Public generic functions
Method, subseq: Public generic functions
Method, subset?: Public generic functions
Method, subset?: Public generic functions
Method, subset?: Public generic functions
Method, subset?: Public generic functions
Method, subset?: Public generic functions
Method, substitute: Public generic functions
Method, substitute: Public generic functions
Method, substitute-if: Public generic functions
Method, substitute-if: Public generic functions
Method, substitute-if-not: Public generic functions
Method, substitute-if-not: Public generic functions
Method, transitive-closure: Private generic functions
Method, transitive-closure: Private generic functions
Method, tuple-merge: Public generic functions
Method, union: Public generic functions
Method, union: Public generic functions
Method, union: Public generic functions
Method, union: Public generic functions
Method, union: Public generic functions
Method, union: Public generic functions
Method, union: Public generic functions
Method, union: Public generic functions
Method, union: Public generic functions
Method, union: Public generic functions
Method, union: Public generic functions
Method, verify: Private generic functions
Method, verify: Private generic functions
Method, verify: Private generic functions
Method, verify: Private generic functions
Method, verify: Private generic functions
Method, with: Public generic functions
Method, with: Public generic functions
Method, with: Public generic functions
Method, with: Public generic functions
Method, with: Public generic functions
Method, with: Public generic functions
Method, with: Public generic functions
Method, with: Public generic functions
Method, with: Public generic functions
Method, with: Public generic functions
Method, with-default: Public generic functions
Method, with-default: Public generic functions
Method, with-first: Public generic functions
Method, with-interval: Private generic functions
Method, with-last: Public generic functions
Method, with-query: Public generic functions
multiplicity: Public generic functions
multiplicity: Public generic functions
multiplicity: Public generic functions
my-identity-ordered-obj-value: Private generic functions
my-identity-ordered-obj-value: Private generic functions
my-integer-p: Private ordinary functions
my-integer-value: Private ordinary functions
my-sequence-actual: Private generic functions
my-sequence-actual: Private generic functions
my-unhandled-obj-value: Private generic functions
my-unhandled-obj-value: Private generic functions

N
nonempty?: Public ordinary functions
notany: Private ordinary functions
notevery: Private ordinary functions

P
partition: Public generic functions
partition: Public generic functions
partition: Public generic functions
partition: Public generic functions
partition: Public generic functions
partition: Public generic functions
partition: Public generic functions
partition: Public generic functions
partition: Public generic functions
partition: Public generic functions
partition: Public generic functions
pick: Private ordinary functions
pop-first: Public macros
pop-last: Public macros
position: Public generic functions
position: Public generic functions
position: Public generic functions
position-if: Public generic functions
position-if: Public generic functions
position-if: Public generic functions
position-if-not: Public generic functions
position-if-not: Public generic functions
position-if-not: Public generic functions
prependf: Public macros
print-bounded-set: Private ordinary functions
print-complement-set: Private ordinary functions
print-dyn-tuple: Private ordinary functions
print-interval: Private ordinary functions
print-interval-set: Private ordinary functions
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-tuple-key: Private ordinary functions
print-wb-2-relation: Private ordinary functions
print-wb-bag: Private ordinary functions
print-wb-list-relation: Private ordinary functions
print-wb-map: Private ordinary functions
print-wb-seq: Private ordinary functions
print-wb-set: Private ordinary functions
push-first: Public macros
push-last: Public macros

Q
query: Public generic functions
query: Public generic functions
query-multi: Public generic functions
query-multi: Public generic functions
query-registry-arity: Private ordinary functions
query-registry-indices: Private ordinary functions
query-registry-key-index: Private ordinary functions
query-registry-p: Private ordinary functions

R
random-test: Private ordinary functions
range: Public generic functions
range: Public generic functions
range: Public generic functions
range: Public generic functions
range-contains?: Public generic functions
range-contains?: Public generic functions
range-contains?: Public generic functions
rank: Public generic functions
rank: Public generic functions
rank: Public generic functions
rank: Public generic functions
read-memory-barrier: Private macros
reduce: Public generic functions
reduce: Public generic functions
reduce: Public generic functions
reduce: Public generic functions
reduce: Public generic functions
reduce: Public generic functions
reduce: Public generic functions
reduce: Public generic functions
reduce: Public generic functions
reduce: Public generic functions
reduced-tuple: Private ordinary functions
relation?: Private ordinary functions
remove: Public generic functions
remove: Public generic functions
remove: Public generic functions
remove-if: Public generic functions
remove-if: Public generic functions
remove-if: Public generic functions
remove-if-not: Public generic functions
remove-if-not: Public generic functions
remove-if-not: Public generic functions
removef: Public macros
rereading-#[-reader: Private ordinary functions
rereading-#{-reader: Private ordinary functions
rereading-#~-reader: Private ordinary functions
restrict: Public generic functions
restrict: Public generic functions
restrict: Public generic functions
restrict-not: Public generic functions
restrict-not: Public generic functions
restrict-not: Public generic functions
reverse: Public generic functions
reverse: Public generic functions
reverse: Public generic functions
run-test-suite: Private ordinary functions

S
seq: Public macros
seq-compare: Private ordinary functions
seq-default: Private ordinary functions
seq-filter: Private ordinary functions
seq-image: Private ordinary functions
seq-partition: Private ordinary functions
seq-position: Private ordinary functions
seq-reduce: Private ordinary functions
seq?: Public ordinary functions
serial-number: Private generic functions
serial-number: Private generic functions
set: Public macros
set-compare: Private ordinary functions
set-difference: Public generic functions
set-difference: Public generic functions
set-difference: Public generic functions
set-difference: Public generic functions
set-difference: Public generic functions
set-difference: Public generic functions
set-difference: Public generic functions
set-difference: Public generic functions
set-difference-2: Public generic functions
set-difference-2: Public generic functions
set-filter: Private ordinary functions
set-image: Private ordinary functions
set-partition: Private ordinary functions
set-reduce: Private ordinary functions
set-size: Public generic functions
set-size: Public generic functions
set-size: Public generic functions
set-transitive-closure: Private ordinary functions
set-value-size: Private ordinary functions
set?: Public ordinary functions
Setf Expander, (setf @): Public setf expanders
Setf Expander, (setf lookup): Public setf expanders
size: Public generic functions
size: Public generic functions
size: Public generic functions
size: Public generic functions
size: Public generic functions
size: Public generic functions
size: Public generic functions
size: Public generic functions
size: Public generic functions
size: Public generic functions
size: Public generic functions
some: Private ordinary functions
sort: Public generic functions
sort: Public generic functions
sort: Public generic functions
sort: Public generic functions
sort-and-group: Private generic functions
sort-and-group: Private generic functions
splice: Public generic functions
splice: Public generic functions
split: Private ordinary functions
split-above: Public generic functions
split-above: Public generic functions
split-below: Public generic functions
split-below: Public generic functions
split-from: Public generic functions
split-from: Public generic functions
split-through: Public generic functions
split-through: Public generic functions
stable-sort: Public generic functions
stable-sort: Public generic functions
stable-sort: Public generic functions
stable-sort: Public generic functions
string-insert: Private ordinary functions
string-remove-at: Private ordinary functions
string-seq-to-set: Private ordinary functions
string-subseq: Private ordinary functions
string-subseq-insert: Private ordinary functions
string-update: Private ordinary functions
subbag?: Public generic functions
subbag?: Public generic functions
subbag?: Public generic functions
subbag?: Public generic functions
subseq: Public generic functions
subseq: Public generic functions
subseq: Public generic functions
subset?: Public generic functions
subset?: Public generic functions
subset?: Public generic functions
subset?: Public generic functions
subset?: Public generic functions
subset?: Public generic functions
substitute: Public generic functions
substitute: Public generic functions
substitute: Public generic functions
substitute-if: Public generic functions
substitute-if: Public generic functions
substitute-if: Public generic functions
substitute-if-not: Public generic functions
substitute-if-not: Public generic functions
substitute-if-not: Public generic functions

T
tail: Public ordinary functions
test-bag-operations: Private ordinary functions
test-bounded-sets: Private ordinary functions
test-cl-generic-sequence-ops: Private ordinary functions
test-compare-lexicographically: Private ordinary functions
test-complement-sets: Private ordinary functions
test-equivalent-sets: Private ordinary functions
test-functional-deep-update: Private ordinary functions
test-map-operations: Private ordinary functions
test-misc: Private ordinary functions
test-modify-macros: Private ordinary functions
test-reader: Private ordinary functions
test-relations: Private ordinary functions
test-rereader: Private ordinary functions
test-seq-operations: Private ordinary functions
test-set-operations: Private ordinary functions
test-tuple-operations: Private ordinary functions
test-type-dispatch-speed: Private ordinary functions
time-index: Private ordinary functions
time-seq-iter: Private ordinary functions
transitive-closure: Private generic functions
transitive-closure: Private generic functions
transitive-closure: Private generic functions
tuple: Public macros
tuple-desc-key-set: Private ordinary functions
tuple-desc-lock: Private ordinary functions
tuple-desc-next-desc-map: Private ordinary functions
tuple-desc-p: Private ordinary functions
tuple-desc-pairs: Private ordinary functions
tuple-desc-reorder-map-map: Private ordinary functions
tuple-desc-serial-number: Private ordinary functions
tuple-get-reorder-map: Private ordinary functions
tuple-key-default-fn: Private ordinary functions
tuple-key-name: Public ordinary functions
tuple-key-number: Private ordinary functions
tuple-key?: Public ordinary functions
tuple-lookup: Private ordinary functions
tuple-make-reorder-map: Private ordinary functions
tuple-merge: Public generic functions
tuple-merge: Public generic functions
tuple-random-value: Private ordinary functions
tuple-reorder-keys: Private ordinary functions
tuple-window-size: Private macros
tuple-with: Private ordinary functions
tuple?: Public ordinary functions

U
union: Public generic functions
union: Public generic functions
union: Public generic functions
union: Public generic functions
union: Public generic functions
union: Public generic functions
union: Public generic functions
union: Public generic functions
union: Public generic functions
union: Public generic functions
union: Public generic functions
union: Public generic functions
unionf: Public macros
update: Private compiler macros
update: Private ordinary functions

V
vector-insert: Private ordinary functions
vector-insert-from-string: Private ordinary functions
vector-pair-bag-diff: Private ordinary functions
vector-pair-bag-intersect: Private ordinary functions
vector-pair-bag-product: Private ordinary functions
vector-pair-bag-subbag?: Private ordinary functions
vector-pair-bag-sum: Private ordinary functions
vector-pair-bag-union: Private ordinary functions
vector-pair-diff-2: Private ordinary functions
vector-pair-intersect: Private ordinary functions
vector-pair-restrict: Private ordinary functions
vector-pair-restrict-not: Private ordinary functions
vector-pair-union: Private ordinary functions
vector-remove-at: Private ordinary functions
vector-seq-to-set: Private ordinary functions
vector-set-binary-search: Private ordinary functions
vector-set-binary-search-cfn: Private ordinary functions
vector-set-binary-search-hi: Private ordinary functions
vector-set-binary-search-lo: Private ordinary functions
vector-set-diff: Private ordinary functions
vector-set-diff-2: Private ordinary functions
vector-set-disjoint?: Private ordinary functions
vector-set-intersect: Private ordinary functions
vector-set-subset?: Private ordinary functions
vector-set-union: Private ordinary functions
vector-subseq: Private ordinary functions
vector-subseq-insert: Private ordinary functions
vector-update: Private ordinary functions
vector-update-from-string: Private ordinary functions
verify: Private generic functions
verify: Private generic functions
verify: Private generic functions
verify: Private generic functions
verify: Private generic functions
verify: Private generic functions

W
wb-2-relation: Public macros
wb-2-relation-map0: Private ordinary functions
wb-2-relation-map1: Private ordinary functions
wb-2-relation-size: Private ordinary functions
wb-2-relation?: Private ordinary functions
wb-bag: Public macros
wb-bag-contents: Private ordinary functions
wb-bag-tree-arb-pair: Private ordinary functions
wb-bag-tree-build-node: Private ordinary functions
wb-bag-tree-compare: Private ordinary functions
wb-bag-tree-compare-rng: Private ordinary functions
wb-bag-tree-concat: Private ordinary functions
wb-bag-tree-diff: Private ordinary functions
wb-bag-tree-diff-rng: Private ordinary functions
wb-bag-tree-find-equivalent: Private ordinary functions
wb-bag-tree-from-list: Private ordinary functions
wb-bag-tree-greatest-pair: Private ordinary functions
wb-bag-tree-intersect: Private ordinary functions
wb-bag-tree-intersect-rng: Private ordinary functions
wb-bag-tree-iterator-canonicalize: Private ordinary functions
wb-bag-tree-iterator-done?: Private ordinary functions
wb-bag-tree-iterator-get: Private ordinary functions
wb-bag-tree-join: Private ordinary functions
wb-bag-tree-least-pair: Private ordinary functions
wb-bag-tree-less: Private ordinary functions
wb-bag-tree-less-minimum: Private ordinary functions
wb-bag-tree-minimum-pair: Private ordinary functions
wb-bag-tree-multiplicity: Private ordinary functions
wb-bag-tree-node-count: Private ordinary functions
wb-bag-tree-node-left: Private ordinary functions
wb-bag-tree-node-print: Private ordinary functions
wb-bag-tree-node-right: Private ordinary functions
wb-bag-tree-node-size: Private ordinary functions
wb-bag-tree-node-total-count: Private ordinary functions
wb-bag-tree-node-value: Private ordinary functions
wb-bag-tree-node?: Private ordinary functions
wb-bag-tree-pair-iterator-canonicalize: Private ordinary functions
wb-bag-tree-pair-iterator-done?: Private ordinary functions
wb-bag-tree-pair-iterator-get: Private ordinary functions
wb-bag-tree-product: Private ordinary functions
wb-bag-tree-product-rng: Private ordinary functions
wb-bag-tree-rank: Private ordinary functions
wb-bag-tree-rank-pair: Private ordinary functions
wb-bag-tree-rank-pair-internal: Private ordinary functions
wb-bag-tree-rank-trim: Private ordinary functions
wb-bag-tree-size: Private ordinary functions
wb-bag-tree-split: Private ordinary functions
wb-bag-tree-subbag?: Private ordinary functions
wb-bag-tree-subbag?-rng: Private ordinary functions
wb-bag-tree-sum: Private ordinary functions
wb-bag-tree-sum-rng: Private ordinary functions
wb-bag-tree-to-set-tree: Private ordinary functions
wb-bag-tree-total-count: Private ordinary functions
wb-bag-tree-trim: Private ordinary functions
wb-bag-tree-union: Private ordinary functions
wb-bag-tree-union-rng: Private ordinary functions
wb-bag-tree-vector-pair-sum: Private ordinary functions
wb-bag-tree-vector-pair-union: Private ordinary functions
wb-bag-tree-verify: Private ordinary functions
wb-bag-tree-verify-rng: Private ordinary functions
wb-bag-tree-with: Private ordinary functions
wb-bag?: Private ordinary functions
wb-list-relation-arity: Private ordinary functions
wb-list-relation-indices: Private ordinary functions
wb-list-relation-tuples: Private ordinary functions
wb-list-relation?: Private ordinary functions
wb-map: Public macros
wb-map-contents: Private ordinary functions
wb-map-default: Private ordinary functions
wb-map-from-cl-sequence: Private ordinary functions
wb-map-from-list: Private ordinary functions
wb-map-tree-arb-pair: Private ordinary functions
wb-map-tree-build-node: Private ordinary functions
wb-map-tree-compare: Private ordinary functions
wb-map-tree-compare-rng: Private ordinary functions
wb-map-tree-compose: Private ordinary functions
wb-map-tree-concat: Private ordinary functions
wb-map-tree-concat-maybe: Private ordinary functions
wb-map-tree-diff-2: Private ordinary functions
wb-map-tree-diff-2-rng: Private ordinary functions
wb-map-tree-domain: Private ordinary functions
wb-map-tree-find-equivalent: Private ordinary functions
wb-map-tree-greatest-pair: Private ordinary functions
wb-map-tree-intersect: Private ordinary functions
wb-map-tree-intersect-rng: Private ordinary functions
wb-map-tree-iterator-canonicalize: Private ordinary functions
wb-map-tree-iterator-done?: Private ordinary functions
wb-map-tree-iterator-get: Private ordinary functions
wb-map-tree-join: Private ordinary functions
wb-map-tree-least-pair: Private ordinary functions
wb-map-tree-less: Private ordinary functions
wb-map-tree-less-minimum: Private ordinary functions
wb-map-tree-lookup: Private ordinary functions
wb-map-tree-minimum-pair: Private ordinary functions
wb-map-tree-node-key: Private ordinary functions
wb-map-tree-node-left: Private ordinary functions
wb-map-tree-node-print: Private ordinary functions
wb-map-tree-node-right: Private ordinary functions
wb-map-tree-node-size: Private ordinary functions
wb-map-tree-node-value: Private ordinary functions
wb-map-tree-node?: Private ordinary functions
wb-map-tree-rank: Private ordinary functions
wb-map-tree-rank-pair: Private ordinary functions
wb-map-tree-rank-pair-internal: Private ordinary functions
wb-map-tree-rank-trim: Private ordinary functions
wb-map-tree-restrict: Private ordinary functions
wb-map-tree-restrict-not: Private ordinary functions
wb-map-tree-restrict-not-rng: Private ordinary functions
wb-map-tree-restrict-rng: Private ordinary functions
wb-map-tree-size: Private ordinary functions
wb-map-tree-split: Private ordinary functions
wb-map-tree-trim: Private ordinary functions
wb-map-tree-union: Private ordinary functions
wb-map-tree-union-rng: Private ordinary functions
wb-map-tree-vector-pair-union: Private ordinary functions
wb-map-tree-verify: Private ordinary functions
wb-map-tree-verify-rng: Private ordinary functions
wb-map-tree-with: Private ordinary functions
wb-map?: Private ordinary functions
wb-seq: Public macros
wb-seq-contents: Private ordinary functions
wb-seq-default: Private ordinary functions
wb-seq-tree-append: Private ordinary functions
wb-seq-tree-build-node: Private ordinary functions
wb-seq-tree-compare: Private ordinary functions
wb-seq-tree-compare-lexicographically: Private ordinary functions
wb-seq-tree-compare-rng: Private ordinary functions
wb-seq-tree-concat: Private ordinary functions
wb-seq-tree-from-list: Private ordinary functions
wb-seq-tree-from-vector: Private ordinary functions
wb-seq-tree-insert: Private ordinary functions
wb-seq-tree-iterator-canonicalize: Private ordinary functions
wb-seq-tree-iterator-done?: Private ordinary functions
wb-seq-tree-iterator-get: Private ordinary functions
wb-seq-tree-node-left: Private ordinary functions
wb-seq-tree-node-print: Private ordinary functions
wb-seq-tree-node-right: Private ordinary functions
wb-seq-tree-node-size: Private ordinary functions
wb-seq-tree-node?: Private ordinary functions
wb-seq-tree-remove: Private ordinary functions
wb-seq-tree-reverse: Private ordinary functions
wb-seq-tree-size: Private ordinary functions
wb-seq-tree-subscript: Private ordinary functions
wb-seq-tree-subseq: Private ordinary functions
wb-seq-tree-to-list: Private ordinary functions
wb-seq-tree-to-set-tree: Private ordinary functions
wb-seq-tree-to-string: Private ordinary functions
wb-seq-tree-to-vector: Private ordinary functions
wb-seq-tree-trim: Private ordinary functions
wb-seq-tree-verify: Private ordinary functions
wb-seq-tree-with: Private ordinary functions
wb-seq?: Private ordinary functions
wb-set: Public macros
wb-set-contents: Private ordinary functions
wb-set-tree-arb: Private ordinary functions
wb-set-tree-build-node: Private ordinary functions
wb-set-tree-compare: Private ordinary functions
wb-set-tree-compare-rng: Private ordinary functions
wb-set-tree-concat: Private ordinary functions
wb-set-tree-diff: Private ordinary functions
wb-set-tree-diff-2: Private ordinary functions
wb-set-tree-diff-2-rng: Private ordinary functions
wb-set-tree-diff-rng: Private ordinary functions
wb-set-tree-disjoint?: Private ordinary functions
wb-set-tree-disjoint?-rng: Private ordinary functions
wb-set-tree-find-equal: Private ordinary functions
wb-set-tree-find-equivalent: Private ordinary functions
wb-set-tree-find-rank: Private ordinary functions
wb-set-tree-from-cl-sequence: Private ordinary functions
wb-set-tree-from-list: Private ordinary functions
wb-set-tree-greatest: Private ordinary functions
wb-set-tree-intersect: Private ordinary functions
wb-set-tree-intersect-rng: Private ordinary functions
wb-set-tree-iterator-canonicalize: Private ordinary functions
wb-set-tree-iterator-done?: Private ordinary functions
wb-set-tree-iterator-get: Private ordinary functions
wb-set-tree-join: Private ordinary functions
wb-set-tree-least: Private ordinary functions
wb-set-tree-less: Private ordinary functions
wb-set-tree-less-minimum: Private ordinary functions
wb-set-tree-member?: Private ordinary functions
wb-set-tree-member?-cfn: Private ordinary functions
wb-set-tree-minimum-value: Private ordinary functions
wb-set-tree-node-left: Private ordinary functions
wb-set-tree-node-print: Private ordinary functions
wb-set-tree-node-right: Private ordinary functions
wb-set-tree-node-size: Private ordinary functions
wb-set-tree-node-value: Private ordinary functions
wb-set-tree-node?: Private ordinary functions
wb-set-tree-rank: Private ordinary functions
wb-set-tree-rank-element: Private ordinary functions
wb-set-tree-rank-element-internal: Private ordinary functions
wb-set-tree-rank-trim: Private ordinary functions
wb-set-tree-size: Private ordinary functions
wb-set-tree-split: Private ordinary functions
wb-set-tree-split-above: Private ordinary functions
wb-set-tree-split-below: Private ordinary functions
wb-set-tree-subset?: Private ordinary functions
wb-set-tree-subset?-rng: Private ordinary functions
wb-set-tree-to-bag-tree: Private ordinary functions
wb-set-tree-trim: Private ordinary functions
wb-set-tree-union: Private ordinary functions
wb-set-tree-union-rng: Private ordinary functions
wb-set-tree-vector-union: Private ordinary functions
wb-set-tree-verify: Private ordinary functions
wb-set-tree-verify-rng: Private ordinary functions
wb-set-tree-with: Private ordinary functions
wb-set?: Private ordinary functions
wb-tree-max-depth: Private ordinary functions
wb-tree-true-max-depth: Private ordinary functions
while: Private macros
with: Public generic functions
with: Public generic functions
with: Public generic functions
with: Public generic functions
with: Public generic functions
with: Public generic functions
with: Public generic functions
with: Public generic functions
with: Public generic functions
with: Public generic functions
with: Public generic functions
with-default: Public generic functions
with-default: Public generic functions
with-default: Public generic functions
with-first: Public generic functions
with-first: Public generic functions
with-interval: Private generic functions
with-interval: Private generic functions
with-last: Public generic functions
with-last: Public generic functions
with-lock: Private macros
with-query: Public generic functions
with-query: Public generic functions
write-memory-barrier: Private macros

X
xconcat: Private ordinary functions
ximage: Private ordinary functions


A.3 Variables

Jump to:   *   +  
A   C   D   H   I   K   L   M   N   P   R   S   T   U   V   W  
Index Entry  Section

*
*empty-wb-2-relation*: Private special variables
*empty-wb-bag*: Private special variables
*empty-wb-map*: Private special variables
*empty-wb-seq*: Private special variables
*empty-wb-set*: Private special variables
*fset-readtable*: Public special variables
*fset-rereading-readtable*: Private special variables
*memory-barrier-lock*: Private symbol macros
*wb-tree-max-string-length*: Private special variables
*wb-tree-max-vector-length*: Private special variables

+
+k0+: Private symbol macros
+k1+: Private symbol macros
+k2+: Private symbol macros
+k3+: Private symbol macros
+k4+: Private symbol macros
+k5+: Private symbol macros
+k6+: Private symbol macros
+k7+: Private symbol macros
+k8+: Private symbol macros
+k9+: Private symbol macros
+master-type-ordering+: Private symbol macros
+package-original-name+: Private symbol macros
+tuple-desc-next-serial-number+: Private symbol macros
+tuple-desc-next-serial-number-lock+: Private symbol macros
+tuple-descriptor-map+: Private symbol macros
+tuple-key-lock+: Private symbol macros
+tuple-key-name-map+: Private symbol macros
+tuple-key-seq+: Private symbol macros
+tuple-random-value+: Private symbol macros
+wb-tree-max-depths-with-values+: Private symbol macros
+wb-tree-max-depths-without-values+: Private symbol macros

A
actual: Private classes
alist: Private structures
alist: Private structures
arity: Public structures
arity: Public structures

C
complement: Private structures
complement?: Public structures
Constant, hedge-negative-infinity: Private constants
Constant, hedge-positive-infinity: Private constants
Constant, tuple-key-number-mask: Private constants
Constant, tuple-key-number-size: Private constants
Constant, tuple-reorder-frequency: Private constants
Constant, tuple-value-chunk-bits: Private constants
Constant, tuple-value-chunk-size: Private constants
Constant, tuple-value-index-size: Private constants
Constant, wb-tree-balance-factor: Private constants
Constant, wb-tree-precomputed-max-depths: Private constants
contents: Public structures
contents: Public structures
contents: Public structures
contents: Public structures
contents: Public structures
contents: Private structures
count: Private structures

D
default: Public structures
default: Public structures
default-fn: Private structures
descriptor: Public structures

H
hedge-negative-infinity: Private constants
hedge-positive-infinity: Private constants

I
indices: Public structures
indices: Public structures

K
key: Private structures
key-index: Public structures
key-set: Private structures
kind: Private structures

L
left: Private structures
left: Private structures
left: Private structures
left: Private structures
lock: Private structures
lower: Private structures

M
map0: Public structures
map1: Public structures
members: Private structures

N
name: Private structures
next-desc-map: Private structures
number: Private structures

P
pairs: Private structures

R
reorder-map-map: Private structures
right: Private structures
right: Private structures
right: Private structures
right: Private structures

S
serial-number: Public classes
serial-number: Private structures
set: Public structures
size: Public structures
size: Private structures
size: Private structures
size: Private structures
size: Private structures
Slot, actual: Private classes
Slot, alist: Private structures
Slot, alist: Private structures
Slot, arity: Public structures
Slot, arity: Public structures
Slot, complement: Private structures
Slot, complement?: Public structures
Slot, contents: Public structures
Slot, contents: Public structures
Slot, contents: Public structures
Slot, contents: Public structures
Slot, contents: Public structures
Slot, contents: Private structures
Slot, count: Private structures
Slot, default: Public structures
Slot, default: Public structures
Slot, default-fn: Private structures
Slot, descriptor: Public structures
Slot, indices: Public structures
Slot, indices: Public structures
Slot, key: Private structures
Slot, key-index: Public structures
Slot, key-set: Private structures
Slot, kind: Private structures
Slot, left: Private structures
Slot, left: Private structures
Slot, left: Private structures
Slot, left: Private structures
Slot, lock: Private structures
Slot, lower: Private structures
Slot, map0: Public structures
Slot, map1: Public structures
Slot, members: Private structures
Slot, name: Private structures
Slot, next-desc-map: Private structures
Slot, number: Private structures
Slot, pairs: Private structures
Slot, reorder-map-map: Private structures
Slot, right: Private structures
Slot, right: Private structures
Slot, right: Private structures
Slot, right: Private structures
Slot, serial-number: Public classes
Slot, serial-number: Private structures
Slot, set: Public structures
Slot, size: Public structures
Slot, size: Private structures
Slot, size: Private structures
Slot, size: Private structures
Slot, size: Private structures
Slot, total-count: Private structures
Slot, tuples: Public structures
Slot, universe: Public structures
Slot, upper: Private structures
Slot, value: Private structures
Slot, value: Private structures
Slot, value: Private structures
Slot, value: Private structures
Slot, value: Private classes
Slot, value: Private classes
Special Variable, *empty-wb-2-relation*: Private special variables
Special Variable, *empty-wb-bag*: Private special variables
Special Variable, *empty-wb-map*: Private special variables
Special Variable, *empty-wb-seq*: Private special variables
Special Variable, *empty-wb-set*: Private special variables
Special Variable, *fset-readtable*: Public special variables
Special Variable, *fset-rereading-readtable*: Private special variables
Special Variable, *wb-tree-max-string-length*: Private special variables
Special Variable, *wb-tree-max-vector-length*: Private special variables
Special Variable, tuple-reorder-score-threshold: Private special variables
Symbol Macro, *memory-barrier-lock*: Private symbol macros
Symbol Macro, +k0+: Private symbol macros
Symbol Macro, +k1+: Private symbol macros
Symbol Macro, +k2+: Private symbol macros
Symbol Macro, +k3+: Private symbol macros
Symbol Macro, +k4+: Private symbol macros
Symbol Macro, +k5+: Private symbol macros
Symbol Macro, +k6+: Private symbol macros
Symbol Macro, +k7+: Private symbol macros
Symbol Macro, +k8+: Private symbol macros
Symbol Macro, +k9+: Private symbol macros
Symbol Macro, +master-type-ordering+: Private symbol macros
Symbol Macro, +package-original-name+: Private symbol macros
Symbol Macro, +tuple-desc-next-serial-number+: Private symbol macros
Symbol Macro, +tuple-desc-next-serial-number-lock+: Private symbol macros
Symbol Macro, +tuple-descriptor-map+: Private symbol macros
Symbol Macro, +tuple-key-lock+: Private symbol macros
Symbol Macro, +tuple-key-name-map+: Private symbol macros
Symbol Macro, +tuple-key-seq+: Private symbol macros
Symbol Macro, +tuple-random-value+: Private symbol macros
Symbol Macro, +wb-tree-max-depths-with-values+: Private symbol macros
Symbol Macro, +wb-tree-max-depths-without-values+: Private symbol macros
Symbol Macro, tuple-keys: Private symbol macros

T
total-count: Private structures
tuple-key-number-mask: Private constants
tuple-key-number-size: Private constants
tuple-keys: Private symbol macros
tuple-reorder-frequency: Private constants
tuple-reorder-score-threshold: Private special variables
tuple-value-chunk-bits: Private constants
tuple-value-chunk-size: Private constants
tuple-value-index-size: Private constants
tuples: Public structures

U
universe: Public structures
upper: Private structures

V
value: Private structures
value: Private structures
value: Private structures
value: Private structures
value: Private classes
value: Private classes

W
wb-tree-balance-factor: Private constants
wb-tree-precomputed-max-depths: Private constants


A.4 Data types

Jump to:   2  
B   C   D   E   F   I   L   M   O   P   Q   R   S   T   W  
Index Entry  Section

2
2-relation: Public structures

B
bag: Public structures
bounded-set: Public structures
bounded-sets.lisp: The fset/code/bounded-sets․lisp file

C
Class, identity-ordering-mixin: Public classes
Class, my-identity-ordered-obj: Private classes
Class, my-sequence: Private classes
Class, my-unhandled-obj: Private classes
code: The fset/code module
collection: Public structures
complement-set: Private structures
complement-sets.lisp: The fset/code/complement-sets․lisp file
Condition, simple-program-error: Private conditions

D
defs.lisp: The fset/code/defs․lisp file
dyn-tuple: Public structures

E
equivalent-bag: Private structures
equivalent-map: Private structures
equivalent-set: Private structures

F
File, bounded-sets.lisp: The fset/code/bounded-sets․lisp file
File, complement-sets.lisp: The fset/code/complement-sets․lisp file
File, defs.lisp: The fset/code/defs․lisp file
File, fset-macros.lisp: The fset/code/fset-macros․lisp file
File, fset.asd: The fset/fset․asd file
File, fset.lisp: The fset/code/fset․lisp file
File, interval.lisp: The fset/code/interval․lisp file
File, macros.lisp: The fset/code/macros․lisp file
File, order-macros.lisp: The fset/code/order-macros․lisp file
File, order.lisp: The fset/code/order․lisp file
File, port.lisp: The fset/code/port․lisp file
File, reader.lisp: The fset/code/reader․lisp file
File, relations.lisp: The fset/code/relations․lisp file
File, testing.lisp: The fset/code/testing․lisp file
File, tuples.lisp: The fset/code/tuples․lisp file
File, wb-trees.lisp: The fset/code/wb-trees․lisp file
fset: The fset system
fset: The fset package
fset-macros.lisp: The fset/code/fset-macros․lisp file
fset-user: The fset-user package
fset.asd: The fset/fset․asd file
fset.lisp: The fset/code/fset․lisp file

I
identity-ordering-mixin: Public classes
interval: Private structures
interval-set: Private structures
interval.lisp: The fset/code/interval․lisp file

L
list-relation: Public structures

M
macros.lisp: The fset/code/macros․lisp file
map: Public structures
Module, code: The fset/code module
my-identity-ordered-obj: Private classes
my-integer: Private structures
my-sequence: Private classes
my-unhandled-obj: Private classes

O
order-macros.lisp: The fset/code/order-macros․lisp file
order.lisp: The fset/code/order․lisp file

P
Package, fset: The fset package
Package, fset-user: The fset-user package
port.lisp: The fset/code/port․lisp file

Q
query-registry: Public structures

R
reader.lisp: The fset/code/reader․lisp file
relation: Public structures
relations.lisp: The fset/code/relations․lisp file

S
seq: Public structures
set: Public structures
simple-program-error: Private conditions
Structure, 2-relation: Public structures
Structure, bag: Public structures
Structure, bounded-set: Public structures
Structure, collection: Public structures
Structure, complement-set: Private structures
Structure, dyn-tuple: Public structures
Structure, equivalent-bag: Private structures
Structure, equivalent-map: Private structures
Structure, equivalent-set: Private structures
Structure, interval: Private structures
Structure, interval-set: Private structures
Structure, list-relation: Public structures
Structure, map: Public structures
Structure, my-integer: Private structures
Structure, query-registry: Public structures
Structure, relation: Public structures
Structure, seq: Public structures
Structure, set: Public structures
Structure, tuple: Public structures
Structure, tuple-desc: Private structures
Structure, tuple-key: Private structures
Structure, wb-2-relation: Public structures
Structure, wb-bag: Public structures
Structure, wb-bag-tree-node: Private structures
Structure, wb-list-relation: Public structures
Structure, wb-map: Public structures
Structure, wb-map-tree-node: Private structures
Structure, wb-seq: Public structures
Structure, wb-seq-tree-node: Private structures
Structure, wb-set: Public structures
Structure, wb-set-tree-node: Private structures
System, fset: The fset system

T
testing.lisp: The fset/code/testing․lisp file
tuple: Public structures
tuple-desc: Private structures
tuple-key: Private structures
tuples.lisp: The fset/code/tuples․lisp file
Type, wb-bag-tree: Private types
Type, wb-map-tree: Private types
Type, wb-seq-tree: Private types
Type, wb-set-tree: Private types

W
wb-2-relation: Public structures
wb-bag: Public structures
wb-bag-tree: Private types
wb-bag-tree-node: Private structures
wb-list-relation: Public structures
wb-map: Public structures
wb-map-tree: Private types
wb-map-tree-node: Private structures
wb-seq: Public structures
wb-seq-tree: Private types
wb-seq-tree-node: Private structures
wb-set: Public structures
wb-set-tree: Private types
wb-set-tree-node: Private structures
wb-trees.lisp: The fset/code/wb-trees․lisp file