The hash-set Reference Manual

This is the hash-set Reference Manual, generated automatically by Declt version 4.0 beta 2 "William Riker" on Mon Feb 26 16:39:17 2024 GMT+0.

Table of Contents


1 Introduction


2 Systems

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


2.1 hash-set

An implementation of the hash-set data structure.

Author

Samuel Chase <>

License

Unlicense

Dependency

alexandria (system).

Source

hash-set.asd.

Child Components

3 Files

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


3.1 Lisp


3.1.1 hash-set/hash-set.asd

Source

hash-set.asd.

Parent Component

hash-set (system).

ASDF Systems

hash-set.


3.1.2 hash-set/package.lisp

Source

hash-set.asd.

Parent Component

hash-set (system).

Packages

hash-set.


3.1.3 hash-set/hash-set.lisp

Dependency

package.lisp (file).

Source

hash-set.asd.

Parent Component

hash-set (system).

Public Interface
Internals

4 Packages

Packages are listed by definition order.


4.1 hash-set

Source

package.lisp.

Use List

common-lisp.

Public Interface
Internals

5 Definitions

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


5.1 Public Interface


5.1.1 Macros

Macro: dohashset ((var hash-set &optional result) &body body)
Package

hash-set.

Source

hash-set.lisp.


5.1.2 Ordinary functions

Function: hash-keys-to-set (hash-table)
Package

hash-set.

Source

hash-set.lisp.

Function: hash-table-to-set (hash-table)
Package

hash-set.

Source

hash-set.lisp.

Function: hash-values-to-set (hash-table)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-all (predicate hash-set)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-any (predicate hash-set)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-cartesian-product (hs-a hs-b)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-copy (hash-set)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-count (hash-set)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-difference (hs-a hs-b)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-emptyp (hash-set)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-equal (hs-a hs-b)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-filter (fn hash-set)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-insert (hash-set item)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-intersection (hs-a hs-b)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-map (fn hash-set)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-memberp (hash-set item)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-ndifference (hs-a hs-b)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-ninsert (hash-set item)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-nintersection (hs-a hs-b)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-nremove (hash-set item)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-nremove-if (predicate hash-set)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-nremove-if-not (predicate hash-set)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-nunion (hs-a hs-b)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-powerset (hash-set)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-proper-subsetp (hs-subset hs-superset)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-proper-supersetp (hs-superset hs-subset)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-remove (hash-set item)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-remove-if (predicate hash-set)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-remove-if-not (predicate hash-set)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-subsetp (hs-subset hs-superset)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-supersetp (hs-superset hs-subset)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-symmetric-difference (hs-a hs-b)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-to-list (hash-set)
Package

hash-set.

Source

hash-set.lisp.

Function: hs-union (hs-a hs-b)
Package

hash-set.

Source

hash-set.lisp.

Function: list-to-hs (list)
Package

hash-set.

Source

hash-set.lisp.

Function: make-hash-set ()
Package

hash-set.

Source

hash-set.lisp.


5.1.3 Standalone methods

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

hash-set.lisp.


5.1.4 Classes

Class: hash-set

A hashset.

Package

hash-set.

Source

hash-set.lisp.

Direct methods
Direct slots
Slot: table
Initform

(make-hash-table :test (function equal) :synchronized t)

Readers

table.

Writers

(setf table).


5.2 Internals


5.2.1 Ordinary functions

Function: %one-bit-positions (n)
Package

hash-set.

Source

hash-set.lisp.


5.2.2 Generic functions

Generic Reader: table (object)
Package

hash-set.

Methods
Reader Method: table ((hash-set hash-set))

automatically generated reader method

Source

hash-set.lisp.

Target Slot

table.

Generic Writer: (setf table) (object)
Package

hash-set.

Methods
Writer Method: (setf table) ((hash-set hash-set))

automatically generated writer method

Source

hash-set.lisp.

Target Slot

table.


Appendix A Indexes


A.1 Concepts


A.2 Functions

Jump to:   %   (  
D   F   G   H   L   M   P   T  
Index Entry  Section

%
%one-bit-positions: Private ordinary functions

(
(setf table): Private generic functions
(setf table): Private generic functions

D
dohashset: Public macros

F
Function, %one-bit-positions: Private ordinary functions
Function, hash-keys-to-set: Public ordinary functions
Function, hash-table-to-set: Public ordinary functions
Function, hash-values-to-set: Public ordinary functions
Function, hs-all: Public ordinary functions
Function, hs-any: Public ordinary functions
Function, hs-cartesian-product: Public ordinary functions
Function, hs-copy: Public ordinary functions
Function, hs-count: Public ordinary functions
Function, hs-difference: Public ordinary functions
Function, hs-emptyp: Public ordinary functions
Function, hs-equal: Public ordinary functions
Function, hs-filter: Public ordinary functions
Function, hs-insert: Public ordinary functions
Function, hs-intersection: Public ordinary functions
Function, hs-map: Public ordinary functions
Function, hs-memberp: Public ordinary functions
Function, hs-ndifference: Public ordinary functions
Function, hs-ninsert: Public ordinary functions
Function, hs-nintersection: Public ordinary functions
Function, hs-nremove: Public ordinary functions
Function, hs-nremove-if: Public ordinary functions
Function, hs-nremove-if-not: Public ordinary functions
Function, hs-nunion: Public ordinary functions
Function, hs-powerset: Public ordinary functions
Function, hs-proper-subsetp: Public ordinary functions
Function, hs-proper-supersetp: Public ordinary functions
Function, hs-remove: Public ordinary functions
Function, hs-remove-if: Public ordinary functions
Function, hs-remove-if-not: Public ordinary functions
Function, hs-subsetp: Public ordinary functions
Function, hs-supersetp: Public ordinary functions
Function, hs-symmetric-difference: Public ordinary functions
Function, hs-to-list: Public ordinary functions
Function, hs-union: Public ordinary functions
Function, list-to-hs: Public ordinary functions
Function, make-hash-set: Public ordinary functions

G
Generic Function, (setf table): Private generic functions
Generic Function, table: Private generic functions

H
hash-keys-to-set: Public ordinary functions
hash-table-to-set: Public ordinary functions
hash-values-to-set: Public ordinary functions
hs-all: Public ordinary functions
hs-any: Public ordinary functions
hs-cartesian-product: Public ordinary functions
hs-copy: Public ordinary functions
hs-count: Public ordinary functions
hs-difference: Public ordinary functions
hs-emptyp: Public ordinary functions
hs-equal: Public ordinary functions
hs-filter: Public ordinary functions
hs-insert: Public ordinary functions
hs-intersection: Public ordinary functions
hs-map: Public ordinary functions
hs-memberp: Public ordinary functions
hs-ndifference: Public ordinary functions
hs-ninsert: Public ordinary functions
hs-nintersection: Public ordinary functions
hs-nremove: Public ordinary functions
hs-nremove-if: Public ordinary functions
hs-nremove-if-not: Public ordinary functions
hs-nunion: Public ordinary functions
hs-powerset: Public ordinary functions
hs-proper-subsetp: Public ordinary functions
hs-proper-supersetp: Public ordinary functions
hs-remove: Public ordinary functions
hs-remove-if: Public ordinary functions
hs-remove-if-not: Public ordinary functions
hs-subsetp: Public ordinary functions
hs-supersetp: Public ordinary functions
hs-symmetric-difference: Public ordinary functions
hs-to-list: Public ordinary functions
hs-union: Public ordinary functions

L
list-to-hs: Public ordinary functions

M
Macro, dohashset: Public macros
make-hash-set: Public ordinary functions
Method, (setf table): Private generic functions
Method, print-object: Public standalone methods
Method, table: Private generic functions

P
print-object: Public standalone methods

T
table: Private generic functions
table: Private generic functions


A.3 Variables

Jump to:   S   T  
Index Entry  Section

S
Slot, table: Public classes

T
table: Public classes