aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Okay <cbeok@protonmail.com>2020-08-11 09:27:01 -0500
committerColin Okay <cbeok@protonmail.com>2020-08-11 09:27:01 -0500
commit6f7197cccbc81924f314d63b6be5fe166f0c98cf (patch)
tree0584a4adc2cdff48001c82683e2eefb114a6f1c3
parent40b8619e8ece8905d3954f1892940f43ec3e7163 (diff)
added positional arguments to $$
-rw-r--r--lambda-tools.lisp2
-rw-r--r--macros.lisp54
2 files changed, 49 insertions, 7 deletions
diff --git a/lambda-tools.lisp b/lambda-tools.lisp
index ef999f1..ecad381 100644
--- a/lambda-tools.lisp
+++ b/lambda-tools.lisp
@@ -16,7 +16,7 @@ PREDICATES have side effects, they will be executed only if each of
the preceding predicates in the list returned NIL."
(labels ((disj (x preds)
(if (null preds) nil
- (or (funcall (car preds) x)
+ (or (funcall (car preds) x)
(disj x (cdr preds))))))
(lambda (x) (disj x predicates))))
diff --git a/macros.lisp b/macros.lisp
index bd564ba..bbc7f4a 100644
--- a/macros.lisp
+++ b/macros.lisp
@@ -1,11 +1,28 @@
(in-package :lambda-tools)
(eval-when (:compile-toplevel :load-toplevel :execute)
- (defun is-substitute-var (symbol)
+ ;;; some fucntions for workign with substitution variables
+
+ (defun substitute-var-p (symbol)
(and (not (eql '$$ symbol))
(symbolp symbol)
(eq (elt (symbol-name symbol) 0)
- #\$))))
+ #\$)))
+
+ (defun numeric-char-p (c)
+ (and (alphanumericp c) (not (alpha-char-p c))))
+
+ (defun numeric-var-p (symbol)
+ (and (substitute-var-p symbol)
+ (numeric-char-p
+ (elt (symbol-name symbol) 1))))
+
+
+ (defun numerically-before-p (a b)
+ (apply #'<
+ (mapcar (lambda (x) (parse-integer (symbol-name x) :start 1 :junk-allowed t))
+ (list a b))))
+ )
@@ -42,15 +59,40 @@ higher order functions:
(list \"hey dude\"
#(1 2 3 4)
\"ffffffffff\")))
- (#\y 3 #\f)"
- (let ((new-params (list)))
+ (#\y 3 #\f)
+
+You can specify the order of the variable in the argument list by
+nameing the variable with a number after the $ symbol. If you go this
+route, all of your variables must be numbered.
+
+E.g.
+
+> (reduce ($$ (concatenate 'string $2-x #\Space $1-acc))
+ (list \"one\" \"two\" \"three\")
+ :initial-value \"zubas\")
+
+ \"three two one zubas\"
+
+
+Note that you can use any numbers, the arguments are sorted by < on
+those numbers.
+
+"
+ (let ((new-params (list))
+ (numeric-params nil))
(subst-if t (constantly nil) expr
:key (lambda (x)
- (when (is-substitute-var x)
+ (when (substitute-var-p x)
(pushnew x new-params))
+ (when (numeric-var-p x)
+ (setf numeric-params t))
(when (eql '$$ x)
(error "$$ cannot be nested"))))
- `(lambda ,(reverse new-params) ,expr)))
+ (setf new-params
+ (if numeric-params
+ (sort new-params #'numerically-before-p)
+ (reverse new-params)))
+ `(lambda ,new-params ,expr)))