215
216
217
218
219
220
221
222
223
|
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
|
-
+
+
+
+
+
+
+
+
+
+
|
@defstruct*[cache:series ([id id/f]
[page symbol/f]
[title string/f]
[published string/f]
[noun-plural string/f]
[noun-singular string/f])
#:constructor-name make-cache:series]{
Table holding cached-information on series.
Table holding cached information on series.
}
@defstruct*[cache:index-entry ([id id/f]
[entry string/f]
[subentry string/f]
[page symbol/f]
[html-anchor string/f])
#:constructor-name make-cache:index-entry]{
Table holding cached information about index entries found in articles.
}
|