-
Notifications
You must be signed in to change notification settings - Fork 3
/
abcl_completions
10596 lines (10596 loc) · 270 KB
/
abcl_completions
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%caddr
%cadr
%car
%cdr
%invalidate-namestring
%make-dialog-prompt-stream
%socket-address
%socket-port
*
+
-
/
/=
1+
1-
<
<=
=
>
>=
abcl-asdf:add-directory-jars-to-class-path
abcl-asdf:add-repository
abcl-asdf:all-jars-below
abcl-asdf:as-classpath
abcl-asdf:ensure-mvn-version
abcl-asdf:ensure-remote-repository
abcl-asdf:ensure-repository-system
abcl-asdf:ensure-session
abcl-asdf:find-http-wagon
abcl-asdf:find-mvn
abcl-asdf:find-mvn-libs
abcl-asdf:find-service-locator
abcl-asdf:init
abcl-asdf:locations
abcl-asdf:make-artifact
abcl-asdf:make-artifact-request
abcl-asdf:make-proxy
abcl-asdf:make-remote-repository
abcl-asdf:make-repository-listener
abcl-asdf:make-repository-system
abcl-asdf:make-session
abcl-asdf:make-wagon-provider
abcl-asdf:mvn-home
abcl-asdf:mvn-version
abcl-asdf:need-to-add-directory-jar?
abcl-asdf:resolve
abcl-asdf:resolve-artifact
abcl-asdf:resolve-dependencies
abcl-asdf:resolve-multiple-maven-dependencies
abcl-asdf:with-aether
abort
abs
acons
acos
acosh
add-method
add-package-local-nickname
adjoin
adjoin-eql
adjust-array
adjustable-array-p
alexandria.0.dev:%factorial
alexandria.0.dev:%multiply-range
alexandria.0.dev:%reevaluate-constant
alexandria.0.dev:alist-hash-table
alexandria.0.dev:alist-plist
alexandria.0.dev:appendf
alexandria.0.dev:assoc-value
alexandria.0.dev:binomial-coefficient
alexandria.0.dev:circular-list
alexandria.0.dev:circular-list-error
alexandria.0.dev:circular-list-p
alexandria.0.dev:circular-tree-p
alexandria.0.dev:clamp
alexandria.0.dev:coercef
alexandria.0.dev:compose
alexandria.0.dev:compose
alexandria.0.dev:conjoin
alexandria.0.dev:copy-array
alexandria.0.dev:copy-file
alexandria.0.dev:copy-hash-table
alexandria.0.dev:copy-sequence
alexandria.0.dev:copy-stream
alexandria.0.dev:copy-stream
alexandria.0.dev:copy-stream
alexandria.0.dev:count-permutations
alexandria.0.dev:cswitch
alexandria.0.dev:curry
alexandria.0.dev:define-constant
alexandria.0.dev:define-constant
alexandria.0.dev:define-constant
alexandria.0.dev:define-constant
alexandria.0.dev:delete-from-plist
alexandria.0.dev:delete-from-plist
alexandria.0.dev:delete-from-plistf
alexandria.0.dev:delete/swapped-arguments
alexandria.0.dev:deletef
alexandria.0.dev:destructuring-case
alexandria.0.dev:destructuring-ccase
alexandria.0.dev:destructuring-ecase
alexandria.0.dev:disjoin
alexandria.0.dev:doplist
alexandria.0.dev:emptyp
alexandria.0.dev:ends-with
alexandria.0.dev:ends-with-subseq
alexandria.0.dev:ends-with-subseq
alexandria.0.dev:ends-with-subseq
alexandria.0.dev:ensure-car
alexandria.0.dev:ensure-cons
alexandria.0.dev:ensure-cons
alexandria.0.dev:ensure-cons
alexandria.0.dev:ensure-function
alexandria.0.dev:ensure-functionf
alexandria.0.dev:ensure-functionf/1
alexandria.0.dev:ensure-gethash
alexandria.0.dev:ensure-list
alexandria.0.dev:ensure-list
alexandria.0.dev:ensure-list
alexandria.0.dev:ensure-list
alexandria.0.dev:ensure-symbol
alexandria.0.dev:eswitch
alexandria.0.dev:expand-destructuring-case
alexandria.0.dev:extract-function-name
alexandria.0.dev:extremum
alexandria.0.dev:factorial
alexandria.0.dev:featurep
alexandria.0.dev:featurep
alexandria.0.dev:first-elt
alexandria.0.dev:flatten
alexandria.0.dev:format-symbol
alexandria.0.dev:format-symbol
alexandria.0.dev:format-symbol
alexandria.0.dev:format-symbol
alexandria.0.dev:format-symbol
alexandria.0.dev:gaussian-random
alexandria.0.dev:generate-switch-body
alexandria.0.dev:hash-table-alist
alexandria.0.dev:hash-table-keys
alexandria.0.dev:hash-table-plist
alexandria.0.dev:hash-table-values
alexandria.0.dev:hash-table-values
alexandria.0.dev:hash-table-values
alexandria.0.dev:if-let
alexandria.0.dev:if-let
alexandria.0.dev:if-let
alexandria.0.dev:if-let
alexandria.0.dev:ignore-some-conditions
alexandria.0.dev:ignore-some-conditions
alexandria.0.dev:ignore-some-conditions
alexandria.0.dev:iota
alexandria.0.dev:last-elt
alexandria.0.dev:lastcar
alexandria.0.dev:lastcar
alexandria.0.dev:length=
alexandria.0.dev:length=
alexandria.0.dev:length=
alexandria.0.dev:lerp
alexandria.0.dev:make-circular-list
alexandria.0.dev:make-gensym
alexandria.0.dev:make-gensym-list
alexandria.0.dev:make-gensym-list
alexandria.0.dev:make-keyword
alexandria.0.dev:make-keyword
alexandria.0.dev:malformed-plist
alexandria.0.dev:map-combinations
alexandria.0.dev:map-derangements
alexandria.0.dev:map-iota
alexandria.0.dev:map-permutations
alexandria.0.dev:map-product
alexandria.0.dev:maphash-keys
alexandria.0.dev:maphash-values
alexandria.0.dev:mappend
alexandria.0.dev:mappend
alexandria.0.dev:maxf
alexandria.0.dev:maybe-intern
alexandria.0.dev:mean
alexandria.0.dev:median
alexandria.0.dev:minf
alexandria.0.dev:multiple-value-compose
alexandria.0.dev:multiple-value-prog2
alexandria.0.dev:named-lambda
alexandria.0.dev:nconcf
alexandria.0.dev:negative-double-float-p
alexandria.0.dev:negative-fixnum-p
alexandria.0.dev:negative-float-p
alexandria.0.dev:negative-integer-p
alexandria.0.dev:negative-long-float-p
alexandria.0.dev:negative-rational-p
alexandria.0.dev:negative-real-p
alexandria.0.dev:negative-short-float-p
alexandria.0.dev:negative-single-float-p
alexandria.0.dev:non-negative-double-float-p
alexandria.0.dev:non-negative-fixnum-p
alexandria.0.dev:non-negative-float-p
alexandria.0.dev:non-negative-integer-p
alexandria.0.dev:non-negative-long-float-p
alexandria.0.dev:non-negative-rational-p
alexandria.0.dev:non-negative-real-p
alexandria.0.dev:non-negative-short-float-p
alexandria.0.dev:non-negative-single-float-p
alexandria.0.dev:non-positive-double-float-p
alexandria.0.dev:non-positive-fixnum-p
alexandria.0.dev:non-positive-float-p
alexandria.0.dev:non-positive-integer-p
alexandria.0.dev:non-positive-long-float-p
alexandria.0.dev:non-positive-rational-p
alexandria.0.dev:non-positive-real-p
alexandria.0.dev:non-positive-short-float-p
alexandria.0.dev:non-positive-single-float-p
alexandria.0.dev:nreversef
alexandria.0.dev:nth-value-or
alexandria.0.dev:nunionf
alexandria.0.dev:of-type
alexandria.0.dev:once-only
alexandria.0.dev:once-only
alexandria.0.dev:once-only
alexandria.0.dev:once-only
alexandria.0.dev:parse-body
alexandria.0.dev:parse-body
alexandria.0.dev:parse-ordinary-lambda-list
alexandria.0.dev:plist-alist
alexandria.0.dev:plist-hash-table
alexandria.0.dev:plist-hash-table
alexandria.0.dev:positive-double-float-p
alexandria.0.dev:positive-fixnum-p
alexandria.0.dev:positive-float-p
alexandria.0.dev:positive-integer-p
alexandria.0.dev:positive-long-float-p
alexandria.0.dev:positive-rational-p
alexandria.0.dev:positive-real-p
alexandria.0.dev:positive-short-float-p
alexandria.0.dev:positive-single-float-p
alexandria.0.dev:proper-list-length
alexandria.0.dev:proper-list-p
alexandria.0.dev:racons
alexandria.0.dev:random-elt
alexandria.0.dev:rassoc-value
alexandria.0.dev:rcurry
alexandria.0.dev:read-file-into-byte-vector
alexandria.0.dev:read-file-into-string
alexandria.0.dev:read-stream-content-into-byte-vector
alexandria.0.dev:read-stream-content-into-string
alexandria.0.dev:remove-from-plist
alexandria.0.dev:remove-from-plistf
alexandria.0.dev:remove/swapped-arguments
alexandria.0.dev:removef
alexandria.0.dev:required-argument
alexandria.0.dev:reversef
alexandria.0.dev:rotate
alexandria.0.dev:rotate-head-to-tail
alexandria.0.dev:rotate-tail-to-head
alexandria.0.dev:safe-endp
alexandria.0.dev:sans
alexandria.0.dev:sequence-of-length-p
alexandria.0.dev:set-equal
alexandria.0.dev:setp
alexandria.0.dev:shuffle
alexandria.0.dev:simple-parse-error
alexandria.0.dev:simple-program-error
alexandria.0.dev:simple-reader-error
alexandria.0.dev:simple-style-warning
alexandria.0.dev:simple-style-warning
alexandria.0.dev:standard-deviation
alexandria.0.dev:starts-with
alexandria.0.dev:starts-with-subseq
alexandria.0.dev:starts-with-subseq
alexandria.0.dev:starts-with-subseq
alexandria.0.dev:subfactorial
alexandria.0.dev:switch
alexandria.0.dev:symbolicate
alexandria.0.dev:symbolicate
alexandria.0.dev:type=
alexandria.0.dev:unionf
alexandria.0.dev:unwind-protect-case
alexandria.0.dev:unwind-protect-case
alexandria.0.dev:variance
alexandria.0.dev:when-let
alexandria.0.dev:when-let
alexandria.0.dev:when-let
alexandria.0.dev:when-let
alexandria.0.dev:when-let
alexandria.0.dev:when-let
alexandria.0.dev:when-let
alexandria.0.dev:when-let
alexandria.0.dev:when-let
alexandria.0.dev:when-let*
alexandria.0.dev:when-let*
alexandria.0.dev:whichever
alexandria.0.dev:with-gensyms
alexandria.0.dev:with-gensyms
alexandria.0.dev:with-gensyms
alexandria.0.dev:with-gensyms
alexandria.0.dev:with-gensyms
alexandria.0.dev:with-input-from-file
alexandria.0.dev:with-open-file*
alexandria.0.dev:with-output-to-file
alexandria.0.dev:with-unique-names
alexandria.0.dev:with-unique-names
alexandria.0.dev:write-byte-vector-into-file
alexandria.0.dev:write-string-into-file
alexandria.0.dev:xor
alexandria.0.dev:xor
alexandria.0.dev:xor
allocate-instance
alpha-char-p
alphanumericp
anaphora:aand
anaphora:aand
anaphora:acase
anaphora:acase
anaphora:accase
anaphora:accase
anaphora:acond
anaphora:acond
anaphora:actypecase
anaphora:actypecase
anaphora:aecase
anaphora:aecase
anaphora:aetypecase
anaphora:aetypecase
anaphora:aif
anaphora:aif
anaphora:aif
anaphora:alet
anaphora:alet
anaphora:anaphoric
anaphora:aprog1
anaphora:aprog1
anaphora:asif
anaphora:asif
anaphora:atypecase
anaphora:atypecase
anaphora:awhen
anaphora:awhen
anaphora:awhen
anaphora:ignore-first
anaphora:internal-symbol-macrolet
anaphora:scase
anaphora:scase
anaphora:sccase
anaphora:sccase
anaphora:scond
anaphora:scond
anaphora:sctypecase
anaphora:sctypecase
anaphora:secase
anaphora:secase
anaphora:setypecase
anaphora:setypecase
anaphora:sif
anaphora:sif
anaphora:slet
anaphora:slet
anaphora:sor
anaphora:sor
anaphora:stypecase
anaphora:stypecase
anaphora:sunless
anaphora:sunless
anaphora:swhen
anaphora:swhen
anaphora:symbolic
anaphora:with-unique-names
and
append
apply
apropos
apropos-list
aref
arglist
arithmetic-error-operands
arithmetic-error-operation
array-dimension
array-dimensions
array-displacement
array-element-type
array-has-fill-pointer-p
array-in-bounds-p
array-rank
array-row-major-index
array-total-size
arrayp
asdf/action:action-component
asdf/action:action-description
asdf/action:action-description
asdf/action:action-operation
asdf/action:action-path
asdf/action:action-valid-p
asdf/action:additional-input-files
asdf/action:additional-input-files
asdf/action:backward-compatible-depends-on
asdf/action:call-while-visiting-action
asdf/action:circular-dependency-actions
asdf/action:circular-dependency-actions
asdf/action:component-depends-on
asdf/action:component-depends-on
asdf/action:component-operation-time
asdf/action:compute-action-stamp
asdf/action:compute-action-stamp
asdf/action:define-convenience-action-methods
asdf/action:downward-operation
asdf/action:downward-operation
asdf/action:downward-operation-depends-on
asdf/action:find-action
asdf/action:format-action
asdf/action:input-files
asdf/action:input-files
asdf/action:make-action
asdf/action:mark-operation-done
asdf/action:operation-done-p
asdf/action:operation-done-p
asdf/action:output-file
asdf/action:output-file
asdf/action:output-files
asdf/action:output-files
asdf/action:perform
asdf/action:perform
asdf/action:perform-with-restarts
asdf/action:perform-with-restarts
asdf/action:selfward-operation
asdf/action:selfward-operation
asdf/action:selfward-operation-depends-on
asdf/action:sideway-operation
asdf/action:sideway-operation
asdf/action:sideway-operation-depends-on
asdf/action:upward-operation
asdf/action:upward-operation
asdf/action:upward-operation-depends-on
asdf/action:while-visiting-action
asdf/backward-interface:component-load-dependencies
asdf/backward-interface:component-load-dependencies
asdf/backward-interface:component-property
asdf/backward-interface:component-property
asdf/backward-interface:enable-asdf-binary-locations-compatibility
asdf/backward-interface:enable-asdf-binary-locations-compatibility
asdf/backward-interface:error-component
asdf/backward-interface:error-component
asdf/backward-interface:error-operation
asdf/backward-interface:error-operation
asdf/backward-interface:operation-on-failure
asdf/backward-interface:operation-on-failure
asdf/backward-interface:operation-on-warnings
asdf/backward-interface:operation-on-warnings
asdf/backward-interface:run-shell-command
asdf/backward-interface:run-shell-command
asdf/backward-interface:system-definition-pathname
asdf/backward-interface:system-definition-pathname
asdf/backward-interface:system-registered-p
asdf/backward-interface:system-registered-p
asdf/backward-interface:traverse
asdf/backward-interface:traverse
asdf/backward-internals:load-sysdef
asdf/bundle:bundle-output-files
asdf/bundle:bundle-pathname-type
asdf/bundle:bundle-type
asdf/bundle:direct-dependency-files
asdf/bundle:epilogue-code
asdf/bundle:extra-build-args
asdf/bundle:extra-object-files
asdf/bundle:gather-operation
asdf/bundle:gather-type
asdf/bundle:no-uiop
asdf/bundle:operation-monolithic-p
asdf/bundle:operation-monolithic-p
asdf/bundle:pathname-type-equal-function
asdf/bundle:postfix-lisp-object-files
asdf/bundle:prebuilt-system-static-library
asdf/bundle:prefix-lisp-object-files
asdf/bundle:prologue-code
asdf/bundle:select-bundle-operation
asdf/bundle:trivial-system-p
asdf/bundle:user-system-p
asdf/component:%additional-input-files
asdf/component:%additional-input-files
asdf/component:%additional-input-files
asdf/component:%additional-input-files
asdf/component:%component-encoding
asdf/component:around-compile-hook
asdf/component:component-build-operation
asdf/component:component-children
asdf/component:component-children
asdf/component:component-children-by-name
asdf/component:component-children-by-name
asdf/component:component-description
asdf/component:component-encoding
asdf/component:component-encoding
asdf/component:component-external-format
asdf/component:component-external-format
asdf/component:component-find-path
asdf/component:component-find-path
asdf/component:component-if-feature
asdf/component:component-in-order-to
asdf/component:component-inline-methods
asdf/component:component-long-description
asdf/component:component-name
asdf/component:component-name
asdf/component:component-operation-times
asdf/component:component-parent
asdf/component:component-parent
asdf/component:component-parent-pathname
asdf/component:component-pathname
asdf/component:component-pathname
asdf/component:component-properties
asdf/component:component-relative-pathname
asdf/component:component-relative-pathname
asdf/component:component-sideway-dependencies
asdf/component:component-sideway-dependencies
asdf/component:component-system
asdf/component:component-system
asdf/component:component-version
asdf/component:component-version
asdf/component:compute-children-by-name
asdf/component:duplicate-names-name
asdf/component:file-type
asdf/component:file-type
asdf/component:find-component
asdf/component:find-component
asdf/component:find-component
asdf/component:module-components
asdf/component:module-components
asdf/component:module-components-by-name
asdf/component:module-default-component-class
asdf/component:source-file-explicit-type
asdf/component:source-file-type
asdf/component:source-file-type
asdf/component:sub-components
asdf/component:version-satisfies
asdf/component:version-satisfies
asdf/find-component:missing-parent
asdf/find-component:missing-required-by
asdf/find-component:missing-requires
asdf/find-component:missing-version
asdf/find-component:resolve-dependency-combination
asdf/find-component:resolve-dependency-name
asdf/find-component:resolve-dependency-spec
asdf/find-system:check-not-old-asdf-system
asdf/find-system:definition-dependencies-up-to-date-p
asdf/find-system:error-condition
asdf/find-system:error-name
asdf/find-system:error-name
asdf/find-system:error-pathname
asdf/find-system:error-pathname
asdf/find-system:load-asd
asdf/find-system:load-asd
asdf/find-system:locate-system
asdf/find-system:locate-system
asdf/forcing:action-forced-not-p
asdf/forcing:action-forced-p
asdf/forcing:action-override-p
asdf/forcing:forced
asdf/forcing:forced-not
asdf/forcing:make-forcing
asdf/forcing:normalize-forced-not-systems
asdf/forcing:normalize-forced-systems
asdf/forcing:or-function
asdf/forcing:parameters
asdf/forcing:performable-p
asdf/interface:call-without-redefinition-warnings
asdf/interface:ensure-parsed-mvn
asdf/interface:normalize-jar-name
asdf/interface:resolved-classpath
asdf/lisp-action:call-with-around-compile-hook
asdf/lisp-action:lisp-compilation-output-files
asdf/lisp-action:perform-lisp-compilation
asdf/lisp-action:perform-lisp-load-fasl
asdf/lisp-action:perform-lisp-load-source
asdf/lisp-action:perform-lisp-warnings-check
asdf/lisp-action:report-file-p
asdf/operate:already-loaded-systems
asdf/operate:already-loaded-systems
asdf/operate:compile-system
asdf/operate:compile-system
asdf/operate:component-loaded-p
asdf/operate:component-loaded-p
asdf/operate:condition-action
asdf/operate:condition-component
asdf/operate:condition-operation
asdf/operate:load-system
asdf/operate:load-system
asdf/operate:load-systems
asdf/operate:load-systems
asdf/operate:load-systems*
asdf/operate:load-systems*
asdf/operate:make
asdf/operate:make
asdf/operate:module-provide-asdf
asdf/operate:oos
asdf/operate:oos
asdf/operate:operate
asdf/operate:operate
asdf/operate:require-system
asdf/operate:require-system
asdf/operate:require-system
asdf/operate:required-module
asdf/operate:restart-upgraded-asdf
asdf/operate:test-system
asdf/operate:test-system
asdf/operation:%compute-operations-value
asdf/operation:check-operation-constructor
asdf/operation:check-operation-constructor
asdf/operation:find-operation
asdf/operation:find-operation
asdf/operation:make-operation
asdf/operation:make-operation
asdf/operation:make-operation
asdf/output-translations:%compute-default-output-translations-value
asdf/output-translations:apply-output-translations
asdf/output-translations:apply-output-translations
asdf/output-translations:clear-output-translations
asdf/output-translations:clear-output-translations
asdf/output-translations:compute-output-translations
asdf/output-translations:disable-output-translations
asdf/output-translations:disable-output-translations
asdf/output-translations:ensure-output-translations
asdf/output-translations:ensure-output-translations
asdf/output-translations:environment-output-translations
asdf/output-translations:inherit-output-translations
asdf/output-translations:initialize-output-translations
asdf/output-translations:initialize-output-translations
asdf/output-translations:output-translations
asdf/output-translations:output-translations-initialized-p
asdf/output-translations:parse-output-translations-string
asdf/output-translations:process-output-translations
asdf/output-translations:process-output-translations-directive
asdf/output-translations:set-output-translations
asdf/output-translations:system-output-translations-directory-pathname
asdf/output-translations:system-output-translations-directory-pathname
asdf/output-translations:system-output-translations-pathname
asdf/output-translations:system-output-translations-pathname
asdf/output-translations:translate-jar-pathname
asdf/output-translations:user-output-translations-directory-pathname
asdf/output-translations:user-output-translations-directory-pathname
asdf/output-translations:user-output-translations-pathname
asdf/output-translations:user-output-translations-pathname
asdf/output-translations:validate-output-translations-directive
asdf/output-translations:validate-output-translations-directory
asdf/output-translations:validate-output-translations-file
asdf/output-translations:validate-output-translations-form
asdf/output-translations:wrapping-output-translations
asdf/package-inferred-system:defpackage-form-p
asdf/package-inferred-system:error-pathname
asdf/package-inferred-system:error-system
asdf/package-inferred-system:file-defpackage-form
asdf/package-inferred-system:initial-package-inferred-systems-table
asdf/package-inferred-system:package-dependencies
asdf/package-inferred-system:package-designator-name
asdf/package-inferred-system:package-inferred-system-file-dependencies
asdf/package-inferred-system:package-name-system
asdf/package-inferred-system:register-system-packages
asdf/package-inferred-system:register-system-packages
asdf/package-inferred-system:same-package-inferred-system-p
asdf/package-inferred-system:stream-defpackage-form
asdf/package-inferred-system:sysdef-package-inferred-system-search
asdf/parse-defsystem:%compute-+asdf-methods+-value
asdf/parse-defsystem:%compute-known-systems-with-bad-secondary-system-names-value
asdf/parse-defsystem:%define-component-inline-methods
asdf/parse-defsystem:%refresh-component-inline-methods
asdf/parse-defsystem:%remove-component-inline-methods
asdf/parse-defsystem:check-component-input
asdf/parse-defsystem:class-for-type
asdf/parse-defsystem:defsystem
asdf/parse-defsystem:defsystem
asdf/parse-defsystem:determine-system-directory
asdf/parse-defsystem:explain
asdf/parse-defsystem:explain
asdf/parse-defsystem:explain
asdf/parse-defsystem:known-system-with-bad-secondary-system-names-p
asdf/parse-defsystem:non-system-system-class-name
asdf/parse-defsystem:non-system-system-name
asdf/parse-defsystem:non-toplevel-system-name
asdf/parse-defsystem:non-toplevel-system-parent
asdf/parse-defsystem:normalize-version
asdf/parse-defsystem:parse-component-form
asdf/parse-defsystem:parse-dependency-def
asdf/parse-defsystem:parse-dependency-defs
asdf/parse-defsystem:record-additional-system-input-file
asdf/parse-defsystem:register-system-definition
asdf/parse-defsystem:sysdef-error-component
asdf/plan:%compute-plan-class-value
asdf/plan:action-already-done-p
asdf/plan:action-status
asdf/plan:action-up-to-date-p
asdf/plan:collect-action-dependencies
asdf/plan:collect-dependencies
asdf/plan:compute-action-status
asdf/plan:direct-dependencies
asdf/plan:make-action-status
asdf/plan:make-plan
asdf/plan:make-plan
asdf/plan:map-direct-dependencies
asdf/plan:mark-as-done
asdf/plan:mark-status-needed
asdf/plan:merge-action-status
asdf/plan:needed-in-image-p
asdf/plan:needed-in-image-p
asdf/plan:perform-plan
asdf/plan:perform-plan
asdf/plan:plan-actions
asdf/plan:plan-actions-r
asdf/plan:plan-component-type
asdf/plan:plan-keep-component
asdf/plan:plan-keep-operation
asdf/plan:record-dependency
asdf/plan:reduce-direct-dependencies
asdf/plan:required-components
asdf/plan:required-components
asdf/plan:status-bits
asdf/plan:status-done-p
asdf/plan:status-index
asdf/plan:status-keep-p
asdf/plan:status-level
asdf/plan:status-need-p
asdf/plan:status-stamp
asdf/plan:traverse-action
asdf/session:%compute-asdf-session-class-value
asdf/session:asdf-cache
asdf/session:asdf-upgraded-p
asdf/session:call-with-asdf-session
asdf/session:compute-file-stamp
asdf/session:consult-asdf-cache
asdf/session:do-asdf-cache
asdf/session:forcing
asdf/session:forcing
asdf/session:format-arguments
asdf/session:format-control
asdf/session:get-file-stamp
asdf/session:normalize-namestring
asdf/session:operate-level
asdf/session:planned-action-count
asdf/session:planned-output-action-count
asdf/session:register-file-stamp
asdf/session:session-ancestor
asdf/session:session-cache
asdf/session:session-operate-level
asdf/session:set-asdf-cache-entry
asdf/session:sysdef-error
asdf/session:toplevel-asdf-session
asdf/session:total-action-count
asdf/session:unset-asdf-cache-entry
asdf/session:visited-actions
asdf/session:visiting-action-list
asdf/session:visiting-action-set
asdf/session:with-asdf-session
asdf/source-registry:%compute-default-source-registries-value
asdf/source-registry:clear-source-registry
asdf/source-registry:clear-source-registry
asdf/source-registry:collect-asds-in-directory
asdf/source-registry:collect-sub*directories-asd-files
asdf/source-registry:compute-source-registry
asdf/source-registry:compute-source-registry
asdf/source-registry:default-system-source-registry
asdf/source-registry:default-user-source-registry
asdf/source-registry:directory-asd-files
asdf/source-registry:ensure-source-registry
asdf/source-registry:ensure-source-registry
asdf/source-registry:environment-source-registry
asdf/source-registry:flatten-source-registry
asdf/source-registry:inherit-source-registry
asdf/source-registry:initialize-source-registry
asdf/source-registry:initialize-source-registry
asdf/source-registry:parse-source-registry-string
asdf/source-registry:pathname-directory-depth
asdf/source-registry:preferred-source-path-p
asdf/source-registry:process-source-registry
asdf/source-registry:process-source-registry
asdf/source-registry:process-source-registry-cache
asdf/source-registry:process-source-registry-directive
asdf/source-registry:register-asd-directory
asdf/source-registry:source-registry-initialized-p
asdf/source-registry:system-source-registry
asdf/source-registry:system-source-registry
asdf/source-registry:system-source-registry-directory
asdf/source-registry:system-source-registry-directory
asdf/source-registry:user-source-registry
asdf/source-registry:user-source-registry
asdf/source-registry:user-source-registry-directory
asdf/source-registry:user-source-registry-directory
asdf/source-registry:validate-source-registry-directive
asdf/source-registry:validate-source-registry-directory
asdf/source-registry:validate-source-registry-file
asdf/source-registry:validate-source-registry-form
asdf/source-registry:wrapping-source-registry
asdf/system-registry:cleanup-system-definition-search-functions
asdf/system-registry:clear-registered-systems
asdf/system-registry:clear-system
asdf/system-registry:clear-system
asdf/system-registry:ensure-preloaded-system-registered
asdf/system-registry:find-system-if-being-defined
asdf/system-registry:make-preloaded-system
asdf/system-registry:map-systems
asdf/system-registry:map-systems
asdf/system-registry:mark-component-preloaded
asdf/system-registry:probe-asd
asdf/system-registry:register-immutable-system
asdf/system-registry:register-immutable-system
asdf/system-registry:register-preloaded-system
asdf/system-registry:register-preloaded-system
asdf/system-registry:register-system
asdf/system-registry:registered-system
asdf/system-registry:registered-system
asdf/system-registry:registered-systems
asdf/system-registry:registered-systems
asdf/system-registry:registered-systems*
asdf/system-registry:search-for-system-definition
asdf/system-registry:search-for-system-definition
asdf/system-registry:sysdef-central-registry-search
asdf/system-registry:sysdef-immutable-system-search
asdf/system-registry:sysdef-immutable-system-search
asdf/system-registry:sysdef-preloaded-system-search
asdf/system-registry:sysdef-preloaded-system-search
asdf/system-registry:sysdef-source-registry-search
asdf/system-registry:sysdef-source-registry-search
asdf/system:builtin-system-p
asdf/system:coerce-filename
asdf/system:coerce-name
asdf/system:coerce-name
asdf/system:component-build-pathname
asdf/system:component-entry-point
asdf/system:define-system-virtual-slot-reader
asdf/system:define-system-virtual-slot-readers
asdf/system:definition-dependency-list
asdf/system:definition-dependency-set
asdf/system:find-system
asdf/system:find-system
asdf/system:find-system
asdf/system:primary-system-name
asdf/system:primary-system-name
asdf/system:primary-system-p
asdf/system:reset-system-class
asdf/system:system-author
asdf/system:system-author
asdf/system:system-bug-tracker
asdf/system:system-bug-tracker
asdf/system:system-defsystem-depends-on
asdf/system:system-defsystem-depends-on
asdf/system:system-depends-on
asdf/system:system-depends-on
asdf/system:system-description
asdf/system:system-description
asdf/system:system-homepage
asdf/system:system-homepage
asdf/system:system-licence
asdf/system:system-licence
asdf/system:system-license
asdf/system:system-license
asdf/system:system-long-description
asdf/system:system-long-description
asdf/system:system-long-name
asdf/system:system-long-name
asdf/system:system-mailto
asdf/system:system-mailto
asdf/system:system-maintainer
asdf/system:system-maintainer
asdf/system:system-relative-pathname
asdf/system:system-relative-pathname
asdf/system:system-source-control
asdf/system:system-source-control
asdf/system:system-source-directory
asdf/system:system-source-directory
asdf/system:system-source-file
asdf/system:system-source-file
asdf/system:system-version
asdf/system:system-version
asdf/system:system-virtual-slot-value
asdf/system:system-weakly-depends-on
asdf/system:system-weakly-depends-on
asdf/upgrade:asdf-message
asdf/upgrade:asdf-message
asdf/upgrade:asdf-version
asdf/upgrade:asdf-version
asdf/upgrade:cleanup-upgraded-asdf
asdf/upgrade:defparameter*
asdf/upgrade:upgrade-asdf
asdf/upgrade:upgrade-asdf
asdf/upgrade:upgrading-p
asdf/upgrade:when-upgrading
asdf/upgrade:with-asdf-deprecation
ash
asin
asinh
assert
assoc
assoc-if
assoc-if-not
assq
assql
atan
atanh
atom
autoload
autoload-macro
autoload-ref-p
autoload-setf-expander
autoload-setf-function
autoloadp
babel-encodings:%register-mapping-part
babel-encodings:ambiguous-encoding-p
babel-encodings:character-coding-error-buffer
babel-encodings:character-coding-error-buffer
babel-encodings:character-coding-error-encoding
babel-encodings:character-coding-error-encoding
babel-encodings:character-coding-error-position
babel-encodings:character-coding-error-position
babel-encodings:character-decoding-error-octets
babel-encodings:character-decoding-error-octets
babel-encodings:character-encoding-error-code
babel-encodings:character-encoding-error-code
babel-encodings:code-point-counter
babel-encodings:code-point-counter
babel-encodings:code-point-counter-factory
babel-encodings:cp932-to-ucs
babel-encodings:decoder
babel-encodings:decoder-factory
babel-encodings:decoding-error
babel-encodings:define-character-encoding
babel-encodings:define-code-point-counter
babel-encodings:define-decoder
babel-encodings:define-encoder
babel-encodings:define-octet-counter
babel-encodings:define-ucs
babel-encodings:define-unibyte-decoder
babel-encodings:define-unibyte-encoder
babel-encodings:define-utf-16
babel-encodings:enc-aliases
babel-encodings:enc-bom-encoding
babel-encodings:enc-code-unit-size
babel-encodings:enc-decode-literal-code-unit-limit
babel-encodings:enc-default-replacement
babel-encodings:enc-documentation
babel-encodings:enc-encode-literal-code-unit-limit
babel-encodings:enc-max-units-per-char
babel-encodings:enc-max-units-per-char
babel-encodings:enc-name
babel-encodings:enc-native-endianness
babel-encodings:enc-nul-encoding
babel-encodings:enc-use-bom
babel-encodings:encoder
babel-encodings:encoder-factory
babel-encodings:encoding-error
babel-encodings:eucjp-to-ucs
babel-encodings:f-ash
babel-encodings:f-logand
babel-encodings:f-logior
babel-encodings:f-logxor
babel-encodings:get-abstract-mapping
babel-encodings:get-character-encoding
babel-encodings:get-character-encoding
babel-encodings:instantiate-code-point-counter
babel-encodings:instantiate-concrete-mappings
babel-encodings:instantiate-decoder
babel-encodings:instantiate-encoder
babel-encodings:instantiate-octet-counter
babel-encodings:list-character-encodings
babel-encodings:list-character-encodings
babel-encodings:list-character-encodings
babel-encodings:lookup-mapping
babel-encodings:lookup-mapping
babel-encodings:make-dummy-coder
babel-encodings:make-fixed-width-counter
babel-encodings:notice-character-encoding
babel-encodings:octet-counter
babel-encodings:octet-counter-factory
babel-encodings:ucs-to-cp932
babel-encodings:ucs-to-eucjp
babel-encodings:utf-16-combine-surrogate-pairs
babel-encodings:utf16-octet-counter
babel-encodings:with-checked-simple-vector
babel-encodings:with-simple-vector
babel:array-data-and-offset
babel:bom-vector
babel:call-with-array-data/copy
babel:call-with-array-data/fast
babel:check-vector-bounds
babel:concatenate-strings-to-octets
babel:enable-sharp-backslash-syntax
babel:ensure-external-format
babel:external-format-encoding
babel:external-format-eol-style
babel:external-format-equal
babel:make-external-format
babel:make-sharp-backslash-reader
babel:octets-to-string
babel:octets-to-string
babel:octets-to-string
babel:set-sharp-backslash-syntax-in-readtable
babel:sharp-backslash-reader
babel:string-get
babel:string-set
babel:string-size-in-octets
babel:string-to-octets
babel:string-to-octets
babel:ub-get
babel:ub-set
babel:vector-size-in-chars
bad-seq-limit
bit
bit-and
bit-andc1
bit-andc2
bit-eqv