summaryrefslogtreecommitdiffstats
path: root/srfi/srfi-125-impl.scm
diff options
context:
space:
mode:
authorGravatar Arvydas Silanskas 2021-08-22 20:54:14 +0300
committerGravatar Arvydas Silanskas 2021-08-22 20:54:14 +0300
commite943ef133b857839bd5d9cdc2197fe7f03a09349 (patch)
treead0cc4ddd3ddd9d237f25f6e9f68bcbbd9049dd1 /srfi/srfi-125-impl.scm
parentclean up (diff)
parenttypo, -comparator can return #f (diff)
merge, add unfold
Diffstat (limited to 'srfi/srfi-125-impl.scm')
-rw-r--r--srfi/srfi-125-impl.scm58
1 files changed, 29 insertions, 29 deletions
diff --git a/srfi/srfi-125-impl.scm b/srfi/srfi-125-impl.scm
index 61863b5..d735f95 100644
--- a/srfi/srfi-125-impl.scm
+++ b/srfi/srfi-125-impl.scm
@@ -129,32 +129,32 @@
(t125:hash-table-ref/default table key default))
(make-dtd
- make-dictionary-index t125:make-hash-table*
- dictionary?-index t125:hash-table?*
- dict-empty?-index t125:hash-table-empty?*
- dict-contains?-index t125:hash-table-contains?*
- dict-ref-index t125:hash-table-ref*
- dict-ref/default-index t125:hash-table-ref/default*
- dict-set!-index t125:hash-table-set!*
- dict-delete-all!-index t125:hash-table-delete-all!*
- dict-intern!-index t125:hash-table-intern!*
- dict-update!-index t125:hash-table-update!*
- dict-update/default!-index t125:hash-table-update!/default*
- dict-pop!-index t125:hash-table-pop!*
- dict-map!-index t125:hash-table-map!*
- dict-filter!-index t125:hash-table-filter!*
- dict-filter-index t125:hash-table-filter*
- dict-remove!-index t125:hash-table-remove!*
- dict-remove-index t125:hash-table-remove*
- dict-search!-index t125:hash-table-search!*
- dict-search-index t125:hash-table-search*
- dict-size-index t125:hash-table-size*
- dict-for-each-index t125:hash-table-for-each*
- dict-keys-index t125:hash-table-keys*
- dict-values-index t125:hash-table-values*
- dict-entries-index t125:hash-table-entries*
- dict-fold-index t125:hash-table-fold*
- dict-map->list-index t125:hash-table-map->list*
- dict->alist-index t125:hash-table->alist*
- dict-comparator-index t125:hash-table-comparator*
- dict-copy-index t125:hash-table-copy*)))
+ make-dictionary-id t125:make-hash-table*
+ dictionary?-id t125:hash-table?*
+ dict-empty?-id t125:hash-table-empty?*
+ dict-contains?-id t125:hash-table-contains?*
+ dict-ref-id t125:hash-table-ref*
+ dict-ref/default-id t125:hash-table-ref/default*
+ dict-set!-id t125:hash-table-set!*
+ dict-delete-all!-id t125:hash-table-delete-all!*
+ dict-intern!-id t125:hash-table-intern!*
+ dict-update!-id t125:hash-table-update!*
+ dict-update/default!-id t125:hash-table-update!/default*
+ dict-pop!-id t125:hash-table-pop!*
+ dict-map!-id t125:hash-table-map!*
+ dict-filter!-id t125:hash-table-filter!*
+ dict-filter-id t125:hash-table-filter*
+ dict-remove!-id t125:hash-table-remove!*
+ dict-remove-id t125:hash-table-remove*
+ dict-search!-id t125:hash-table-search!*
+ dict-search-id t125:hash-table-search*
+ dict-size-id t125:hash-table-size*
+ dict-for-each-id t125:hash-table-for-each*
+ dict-keys-id t125:hash-table-keys*
+ dict-values-id t125:hash-table-values*
+ dict-entries-id t125:hash-table-entries*
+ dict-fold-id t125:hash-table-fold*
+ dict-map->list-id t125:hash-table-map->list*
+ dict->alist-id t125:hash-table->alist*
+ dict-comparator-id t125:hash-table-comparator*
+ dict-copy-id t125:hash-table-copy*)))