diff options
| author | 2020-10-28 00:19:16 +0200 | |
|---|---|---|
| committer | 2020-10-28 00:19:16 +0200 | |
| commit | 28b43c452b784bbe58e2099626695595addacea3 (patch) | |
| tree | e48939e48b659ff715953a43bbc04d06b9b14167 /srfi-125-impl.scm | |
| parent | 125 and 126 initial impl (diff) | |
update tests
Diffstat (limited to 'srfi-125-impl.scm')
| -rw-r--r-- | srfi-125-impl.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/srfi-125-impl.scm b/srfi-125-impl.scm index bbc4d75..b683a2a 100644 --- a/srfi-125-impl.scm +++ b/srfi-125-impl.scm @@ -30,7 +30,7 @@ keys) table) - (define (hash-table-map* proc table) + (define (hash-table-map!* proc table) (hash-table-map! proc table) table) @@ -71,20 +71,20 @@ 'dictionary? hash-table? 'dict-empty? hash-table-empty? 'dict-contains? hash-table-contains? - 'dict-ref hash-table-ref* + 'dict-ref hash-table-ref 'dict-ref/default hash-table-ref/default 'dict-set! hash-table-set!* 'dict-delete-all! hash-table-delete-all!* 'dict-intern! hash-table-intern!* - 'dict-update! hash-table-update* + 'dict-update! hash-table-update!* 'dict-update/default! hash-table-update!/default* 'dict-pop! hash-table-pop!* - 'dict-map! hash-table-map* + 'dict-map! hash-table-map!* 'dict-filter! hash-table-filter* 'dict-remove! hash-table-remove!* 'dict-search! hash-table-search* 'dict-size hash-table-size - 'dict-for-each hash-table-foreach* + 'dict-for-each hash-table-for-each 'dict-keys hash-table-keys 'dict-values hash-table-values 'dict-entries hash-table-entries |
