-
Notifications
You must be signed in to change notification settings - Fork 0
/
consecution-extrinsic.asd
104 lines (98 loc) · 2.87 KB
/
consecution-extrinsic.asd
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
(cl:in-package #:asdf-user)
(defsystem "consecution-extrinsic"
:depends-on
("acclimation"
"alexandria"
"closer-mop"
"fast-generic-functions")
:in-order-to ((asdf:test-op (asdf:test-op #:consecution-extrinsic/test)))
:components
((:module code
:pathname "Code/"
:serial t
:components
((:file "packages")
;; Load all types, conditions, and utilities.
(:file "types")
(:file "conditions")
(:file "condition-reporters-en")
(:file "sequence-function")
(:file "generic-functions")
;; Load the a few elementary sequence functions and seal
;; them. This way, the subsequent definitions can already use
;; optimized versions of them.
(:file "length")
(:file "elt")
;; Load utilities.
(:file "utilities")
(:file "with-cons-iterator")
(:file "with-key-function")
(:file "with-list-start-and-end")
(:file "with-predicate")
(:file "with-reified-result-type")
(:file "with-test-function")
(:file "with-vector-start-and-end")
(:file "for-each-relevant-cons")
(:file "for-each-relevant-element")
(:file "sequence-scanner")
;; Now that all utilities and elementary sequence functions have been
;; defined, it is possible to load the remaining functions. The order
;; is mostly alphabetical, except that some very important functions
;; like MAKE-SEQUENCE and NREVERSE are loaded early.
(:file "adjust-sequence")
(:file "make-sequence")
(:file "make-sequence-like")
(:file "copy-seq")
(:file "nreverse")
(:file "count")
(:file "count-if")
(:file "count-if-not")
(:file "delete-aux")
(:file "delete-duplicates")
(:file "delete")
(:file "delete-if")
(:file "delete-if-not")
(:file "fill")
(:file "find")
(:file "find-if")
(:file "find-if-not")
(:file "map-for-effect")
(:file "map-into")
(:file "map")
(:file "concatenate")
(:file "merge")
(:file "mismatch")
(:file "nsubstitute")
(:file "nsubstitute-if")
(:file "nsubstitute-if-not")
(:file "position-if")
(:file "position-if-not")
(:file "position")
(:file "reduce")
(:file "remove-duplicates")
(:file "remove-aux")
(:file "remove-if")
(:file "remove-if-not")
(:file "remove")
(:file "replace")
(:file "reverse")
(:file "search")
(:file "sort")
(:file "stable-sort")
(:file "subseq")
(:file "substitute")
(:file "substitute-if")
(:file "substitute-if-not")))))
(defsystem "consecution-extrinsic/test"
:depends-on
("ansi-test-harness"
"consecution-extrinsic")
:perform (asdf:test-op (op c)
(uiop:symbol-call :consecution-extrinsic/test :test))
:components
((:module "code"
:pathname "Code/Extrinsic-Test/"
:serial t
:components
((:file "packages")
(:file "test")))))