about summary refs log tree commit diff
path: root/dump
diff options
context:
space:
mode:
authorArun Isaac2022-03-10 14:48:14 +0530
committerArun Isaac2022-03-10 14:48:14 +0530
commit900c4df8e336a453446150528daeaad77b81f020 (patch)
tree0469cbadee0fecad57194ce0376a026d79f4bd3b /dump
parente38a31264456f7ef191d1a630d1d33897b413546 (diff)
downloadgn-transform-databases-900c4df8e336a453446150528daeaad77b81f020.tar.gz
Rename the delete verb of map-alist to remove.
The delete verb of map-alist somehow interacts with the delete
function from (srfi srfi-1), and I'm not able to figure out how. It is
simpler to just rename the delete verb to remove.

* dump/utils.scm: Do not rename the delete function from (srfi srfi-1).
(map-alist): Rename the delete verb to remove.
* tests.scm ("map-alist docstring example"): Update test.
Diffstat (limited to 'dump')
-rw-r--r--dump/utils.scm16
1 files changed, 6 insertions, 10 deletions
diff --git a/dump/utils.scm b/dump/utils.scm
index 402cbb3..1368a67 100644
--- a/dump/utils.scm
+++ b/dump/utils.scm
@@ -1,9 +1,5 @@
 (define-module (dump utils)
-  ;; Rename delete to srfi:delete since it somehow interferes with the
-  ;; delete verb of map-alist.
-  #:use-module ((srfi srfi-1) #:renamer (lambda (sym)
-                                          (if (eq? sym 'delete)
-                                              'srfi:delete sym)))
+  #:use-module (srfi srfi-1)
   #:use-module (srfi srfi-26)
   #:use-module (ice-9 match)
   #:export (translate-forms
@@ -81,7 +77,7 @@ Syntax:
   (verb key expression) ...
   (else=> proc))
 
-VERB must be one of set, filter-set, multiset and delete.
+VERB must be one of set, filter-set, multiset and remove.
 
 For the set VERB, KEY is set to the result of evaluating
 EXPRESSION. Multiple set verbs on the same key will result in multiple
@@ -93,7 +89,7 @@ EXPRESSION only if that result is not #f.
 For the multiset VERB, EXPRESSION must return a list and KEY is
 associated multiple times once with each element of the returned list.
 
-For the delete VERB, KEY is discarded.
+For the remove VERB, KEY is discarded.
 
 EXPRESSIONs must reference elements of ALIST using (key k) forms where
 K is the key to be referenced from ALIST. K must not be quoted. That
@@ -121,7 +117,7 @@ Example:
   (set aal (+ (key \"foo\")
               (key bar)))
   (multiset vel (iota (* 2 (key bar))))
-  (delete foobar)
+  (remove foobar)
   (else=> (match-lambda
             ((key . value)
              (cons key (expt 2 value))))))
@@ -179,8 +175,8 @@ Example:
                                                               #'(actions ...))
                                                ;; Keys that were deleted
                                                #,@(filter-map (lambda (action)
-                                                                (syntax-case action (delete)
-                                                                  ((delete key) #''key)
+                                                                (syntax-case action (remove)
+                                                                  ((remove key) #''key)
                                                                   (_ #f)))
                                                               #'(actions ...))
                                                ;; Keys that were set