-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
api.lisp
63 lines (63 loc) · 1.2 KB
/
api.lisp
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
(defpackage #:org.shirakumo.trivial-extensible-sequences
#-(or abcl ccl clasp ecl sbcl)
(:nicknames #:sequence)
(:use #+sbcl #:sb-sequence
#+(or abcl clasp) #:sequence)
#+(or sbcl abcl clasp)
(:import-from #:cl #:sequence)
(:export
#:sequence
#:length
#:elt
#:adjust-sequence
#:make-sequence-like
#:protocol-unimplemented
#:protocol-unimplemented-operation
#:emptyp
#:count
#:count-if
#:count-if-not
#:find
#:find-if
#:find-if-not
#:position
#:position-if
#:position-if-not
#:subseq
#:copy-seq
#:fill
#:map
#:nsubstitute
#:nsubstitute-if
#:nsubstitute-if-not
#:substitute
#:substitute-if
#:substitute-if-not
#:replace
#:nreverse
#:reverse
#:concatenate
#:reduce
#:mismatch
#:search
#:delete
#:delete-if
#:delete-if-not
#:remove
#:remove-if
#:remove-if-not
#:delete-duplicates
#:remove-duplicates
#:sort
#:stable-sort
#:merge
#:dosequence
#:make-sequence-iterator
#:with-sequence-iterator
#:with-sequence-iterator-functions
#:iterator-step
#:iterator-endp
#:iterator-element
#:iterator-index
#:iterator-copy
#:make-simple-sequence-iterator))