-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackages.lisp
94 lines (87 loc) · 1.72 KB
/
packages.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
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
;;;; -*- Mode: Lisp; Base: 10; Syntax: ANSI-Common-Lisp; Package: CL-USER -*-
;;;; Anaphora: The Anaphoric Macro Package from Hell
;;;;
;;;; This been placed in Public Domain by the author,
;;;; Nikodemus Siivola <[email protected]>
(defpackage :anaphora
(:use :cl)
(:export
#:it
#:self
#:alet
#:slet
#:aif
#:aand
#:sor
#:awhen
#:aprog1
#:acase
#:aecase
#:accase
#:atypecase
#:aetypecase
#:actypecase
#:acond
#:alambda
#:sif
#:asif
#:swhen
#:sunless
#:scase
#:secase
#:sccase
#:stypecase
#:setypecase
#:sctypecase
#:scond)
(:documentation
"ANAPHORA provides a full complement of anaphoric macros. Subsets of the
functionality provided by this package are exported from ANAPHORA-BASIC and
ANAPHORA-SYMBOL."))
(defpackage :anaphora-basic
(:use :cl :anaphora)
(:export
#:it
#:self
#:alet
#:aif
#:aand
#:awhen
#:aprog1
#:acase
#:aecase
#:accase
#:atypecase
#:aetypecase
#:actypecase
#:acond
#:alambda)
(:documentation
"ANAPHORA-BASIC provides all normal anaphoric constructs, which bind
primary values to IT/SELF."))
(defpackage :anaphora-symbol
(:use :cl :anaphora)
(:export
#:it
#:slet
#:sor
#:sif
#:asif
#:swhen
#:sunless
#:scase
#:secase
#:sccase
#:stypecase
#:setypecase
#:sctypecase
#:scond)
(:documentation
"ANAPHORA-SYMBOL provides ``symbolic anaphoric macros'', which bind forms
to IT via SYMBOL-MACROLET.
Examples:
(sor (gethash key table) (setf it default))
(asif (gethash key table)
(foo it) ; IT is a value bound by LET here
(setf it default)) ; IT is the GETHASH form bound by SYMBOL-MACROLET here
"))