root/trunk/bknr/datastore/src/indices/package.lisp

Revision 2521, 1.1 kB (checked in by ksprotte, 10 months ago)

#+cmu removed :use :ext from defpackages bknr.utils and bknr.indices
as this does not seem to be needed and causes a symbol conflict

  • Property svn:eol-style set to native
  • Property svn:keywords set to author date id revision
Line 
1 (in-package :cl-user)
2
3 (defpackage :bknr.indices
4   (:use :cl
5         #+clisp :ext
6         #+sbcl :sb-ext
7         :cl-user
8         :bknr.utils
9         :bknr.skip-list
10         #+allegro :aclmop
11         #+cmu :pcl
12         #+openmcl :openmcl-mop
13         #+sbcl :sb-pcl)
14   (:export #:index-add
15            #:index-get
16            #:index-remove
17            #:index-keys
18            #:index-values
19            #:index-initialize
20            #:index-reinitialize
21            #:index-clear
22            #:index-create
23            #:index-mapvalues
24            #:index-existing-error
25
26            #:initialize-indexed-instance
27            #:*initialized-indexed-instance*
28            #:*indexed-class-override*
29
30            #:slot-index
31            #:unique-index
32            #:string-unique-index
33            #:hash-index
34            #:hash-list-index
35            #:array-index
36            #:class-index
37            #:skip-list-index
38            #:class-skip-index
39
40            #:clear-class-indices
41            #:clear-slot-indices
42            #:class-slot-indices
43            #:class-slot-index
44
45            #:indexed-class
46            #:indexed-class-index-named
47            #:index-direct-slot-definition
48            #:index-effective-slot-definition
49            #:destroy-object
50            #:object-destroyed-p
51
52            #:category-index
53            #:tree-find-children
54            #:tree-find-siblings
55            #:parent-category
56            #:parent-categories
57            #:tree-categories))
Note: See TracBrowser for help on using the browser.