-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.package.lisp
executable file
·48 lines (48 loc) · 1.75 KB
/
base.package.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
(defpackage #:std.base
(:use)
(:import-from #:cl
#:&rest #:&key #:&allow-other-keys #:&optional #:&body #:&whole
#:or #:not #:and #:nil #:t
#:declare ; #:proclaim #:declaim rare used
#:cond #:case #:ccase #:ecase
#:if #:do #:do* #:let #:let* #:labels #:flet
#:setf ; #:setq #:set rare used
#:eval-when
#:let #:let* #:macrolet #:flet #:labels
#:typecase #:etypecase #:ctypecase
#:eq #:eql #:equal #:equalp
#:member #:values #:lambda #:funcall
#:defun #:the #:locally #:declare
#:defmethod #:defgeneric #:defmacro
#:every #:listp #:car #:apply
#:when #:unless
#:defvar #:defparameter
#:block #:catch #:throw #:tagbody #:go #:return-from #:return
#:prog1 #:progn
#:*readtable* #:*package*)
(:import-from #:advanced-readtable
#:find-symbol #:find-package)
(:import-from #:iterate #:iter)
(:import-from #:metabang-bind #:bind)
(:export
#:copy #:@
#:+ #:- #:* #:/ #:/= #:< #:> #:>= #:<= #:=
;; CDR 8
#:equals
#:compare
;; reexport
#:setf
#:cond #:case #:ccase #:ecase
#:if #:do #:do* #:let #:let* #:labels #:flet
#:when #:unless
#:typecase #:etypecase #:ctypecase
#:declare #:eval-always #:eval-when
#:not #:and #:or #:nil #:t
#:eq #:eql #:equal #:equalp
#:member #:values
#:the #:locally
#:&rest #:&key #:&allow-other-keys #:&optional #:&body #:&whole
#:defvar #:defparameter #:bind #:iter
#:block #:catch #:throw #:tagbody #:go #:return-from #:return
#:prog1 #:progn
#:*readtable* #:*package*))