summaryrefslogtreecommitdiffstats
path: root/srfi/225/core-exports.scm
diff options
context:
space:
mode:
authorGravatar John Cowan 2022-09-21 16:13:05 -0400
committerGravatar John Cowan 2022-09-21 16:13:05 -0400
commit4653e001940b9720d3f9b10ce8f1362a177c33d2 (patch)
treedfd55a47b54f85c984cae6b7b7aa9718af79c0d1 /srfi/225/core-exports.scm
parenteditorial (diff)
Added ! to all updaters
Diffstat (limited to 'srfi/225/core-exports.scm')
-rw-r--r--srfi/225/core-exports.scm24
1 files changed, 12 insertions, 12 deletions
diff --git a/srfi/225/core-exports.scm b/srfi/225/core-exports.scm
index 90e2992..a3dab1d 100644
--- a/srfi/225/core-exports.scm
+++ b/srfi/225/core-exports.scm
@@ -12,19 +12,19 @@
dict-comparator
;; mutation
- dict-set
- dict-adjoin
- dict-delete
- dict-delete-all
- dict-replace
- dict-intern
- dict-update
- dict-update/default
- dict-pop
+ dict-set!
+ dict-adjoin!
+ dict-delete!
+ dict-delete!-all!
+ dict-replace!
+ dict-intern!
+ dict-update!
+ dict-update!/default!
+ dict-pop!
dict-map
dict-filter
dict-remove
- dict-find-update
+ dict-find-update!
;; whole dictionary
dict-size
@@ -41,8 +41,8 @@
;; iteration
dict-for-each
dict->generator
- dict-set-accumulator
- dict-adjoin-accumulator
+ dict-set!-accumulator
+ dict-adjoin!-accumulator
;; dictionary type descriptors
dto?