aboutsummaryrefslogtreecommitdiff
path: root/macros.lisp
diff options
context:
space:
mode:
authorColin Okay <cbeok@protonmail.com>2020-08-13 11:18:44 -0500
committerColin Okay <cbeok@protonmail.com>2020-08-13 11:18:44 -0500
commit94cdd9c501235aee52d772aa528584d5b023d4fd (patch)
treea9b406ddff563f2d619251cd12a08d7172bbafed /macros.lisp
parentc80b5a82030246cfe3b0305874b8a682fad4c199 (diff)
renamed and> and or> to conj and disj
Diffstat (limited to 'macros.lisp')
-rw-r--r--macros.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/macros.lisp b/macros.lisp
index de2dfbf..8157959 100644
--- a/macros.lisp
+++ b/macros.lisp
@@ -91,7 +91,7 @@ those numbers.
-(defmacro and> (&rest preds)
+(defmacro conj (&rest preds)
(let ((block-label (gensym)))
`(let ((preds (list ,@preds)))
(lambda (arg)
@@ -103,7 +103,7 @@ those numbers.
(unless acc (return-from ,block-label nil)))
acc))))))
-(defmacro or> (&rest preds)
+(defmacro disj (&rest preds)
(let ((block-label (gensym)))
`(let ((preds (list ,@preds)))
(lambda (arg)