blob: a410b62e1fd2e269c9910fb0cdd2363268a02e6c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
|
(define-library
(srfi 225)
(import (scheme base)
(scheme case-lambda)
(scheme write)
(srfi 1)
(srfi 128))
(cond-expand
((library (srfi 145)) (import (srfi 145)))
(else (include "assumptions.scm")))
(export
;; predicates
dictionary?
dict-empty?
dict-contains?
dict=?
dict-mutable?
;; lookup
dict-ref
dict-ref/default
;; mutation
dict-set
dict-set!
dict-adjoin
dict-adjoin!
dict-delete
dict-delete!
dict-delete-all
dict-delete-all!
dict-replace
dict-replace!
dict-intern
dict-intern!
dict-update
dict-update!
dict-update/default
dict-update/default!
dict-pop
dict-pop!
dict-map
dict-map!
dict-filter
dict-filter!
dict-remove
dict-remove!
dict-alter
dict-alter!
;; whole dictionary
dict-size
dict-count
dict-any
dict-every
dict-keys
dict-values
dict-entries
dict-fold
dict-map->list
dict->alist
dict-comparator
;; iteration
dict-for-each
dict-for-each<
dict-for-each<=
dict-for-each>
dict-for-each>=
dict-for-each-in-open-interval
dict-for-each-in-closed-interval
dict-for-each-in-open-closed-interval
dict-for-each-in-closed-open-interval
;; generator procedures
make-dict-generator
dict-set-accumulator
dict-adjoin-accumulator
;; dictionary type descriptors
dtd?
make-dtd
dtd
make-alist-dtd
dtd-ref
;; exceptions
dictionary-error
dictionary-error?
dictionary-message
dictionary-irritants
;; proc indeces
dictionary?-id
dict-empty?-id
dict-contains?-id
dict=?-id
dict-mutable?-id
dict-ref-id
dict-ref/default-id
dict-set-id
dict-adjoin-id
dict-delete-id
dict-delete-all-id
dict-replace-id
dict-intern-id
dict-update-id
dict-update/default-id
dict-pop-id
dict-map-id
dict-filter-id
dict-remove-id
dict-alter-id
dict-size-id
dict-count-id
dict-any-id
dict-every-id
dict-keys-id
dict-values-id
dict-entries-id
dict-fold-id
dict-map->list-id
dict->alist-id
dict-comparator-id
dict-for-each-id
dict-for-each<-id
dict-for-each<=-id
dict-for-each>-id
dict-for-each>=-id
dict-for-each-in-open-interval-id
dict-for-each-in-closed-interval-id
dict-for-each-in-open-closed-interval-id
dict-for-each-in-closed-open-interval-id
make-dict-generator-id
dict-set-accumulator-id
dict-adjoin-accumulator-id
;; basic DTDs
alist-eqv-dtd
alist-equal-dtd)
;; implementations
(include "indexes.scm")
(include "externals.scm")
(include "default-impl.scm")
(include "alist-impl.scm")
;; library-dependent DTD exports
;; and implementations
;;
;;srfi-69-dtd
;;hash-table-dtd
;;srfi-126-dtd
;;mapping-dtd
;;hash-mapping-dtd
(cond-expand
((library (srfi 69))
(import (prefix (srfi 69) t69-))
(include "srfi-69-impl.scm")
(export srfi-69-dtd))
(else))
(cond-expand
((library (srfi 125))
(import (prefix (srfi 125) t125-))
(include "srfi-125-impl.scm")
(export hash-table-dtd))
(else))
(cond-expand
((library (srfi 126))
(import (prefix (srfi 126) t126-))
(include "srfi-126-impl.scm")
(export srfi-126-dtd))
(else))
(cond-expand
((and (library (srfi 146))
(library (srfi 146 hash)))
(import (srfi 146)
(srfi 146 hash))
(include "srfi-146-impl.scm"
"srfi-146-hash-impl.scm")
(export mapping-dtd
hash-mapping-dtd))
(else)))
|