diff options
author | Arun Isaac | 2021-12-16 15:43:04 +0530 |
---|---|---|
committer | Arun Isaac | 2021-12-16 15:43:04 +0530 |
commit | 774a36bcb34cd0885e56d95d5b975158688c29b3 (patch) | |
tree | a02891c26fab4cd498afb699cef325d41702c866 | |
parent | 63a0049caffce1ca19c6fc5dd8c450d5b3dec7d1 (diff) | |
download | gn-transform-databases-774a36bcb34cd0885e56d95d5b975158688c29b3.tar.gz |
Specify map-alist behaviour for multiple set verbs.
* dump/utils.scm (map-alist): Specify behaviour for multiple set
verbs.
-rw-r--r-- | dump/utils.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dump/utils.scm b/dump/utils.scm index 774442f..402cbb3 100644 --- a/dump/utils.scm +++ b/dump/utils.scm @@ -83,7 +83,9 @@ Syntax: VERB must be one of set, filter-set, multiset and delete. -For the set VERB, KEY is set to the result of evaluating EXPRESSION. +For the set VERB, KEY is set to the result of evaluating +EXPRESSION. Multiple set verbs on the same key will result in multiple +associations for that key. For the filter-set VERB, KEY is set to the result of evaluating EXPRESSION only if that result is not #f. |