summaryrefslogtreecommitdiffstats
path: root/srfi-225.html
diff options
context:
space:
mode:
authorGravatar John Cowan 2022-03-15 15:32:54 -0400
committerGravatar GitHub 2022-03-15 15:32:54 -0400
commita7f2c6a51139c210e4d62ab1447830cc525de21a (patch)
tree2c15cebeda8c756bb9139a4cd3ef786266c02604 /srfi-225.html
parentUpdate srfi-225.html (diff)
parentfix srfi 125 implementation (diff)
Merge pull request #3 from arvyy/master
Implementation update
Diffstat (limited to 'srfi-225.html')
-rw-r--r--srfi-225.html24
1 files changed, 9 insertions, 15 deletions
diff --git a/srfi-225.html b/srfi-225.html
index 48fed8b..29ebeba 100644
--- a/srfi-225.html
+++ b/srfi-225.html
@@ -384,8 +384,6 @@ one for each of the four procedures:
</pre></blockquote>
<p><code>(dict-&gt;alist</code>&nbsp;<em>dto dict</em><code>)</code></p>
<p>Returns an alist whose keys and values are the keys and values of <em>dict</em>.</p>
-<code>dict-filter</code>, <code>dict-remove</code>,
-and <code>dict-find-update</code>.
</p>
<p><code>(dict-comparator</code>&nbsp;<em>dto dict</em><code>)</code></p>
<p>Return a comparator representing the type predicate, equality predicate,
@@ -573,11 +571,6 @@ new dictionary types that may not have complete dictionary APIs:</p>
<dd>dict-delete-all</dd>
<dd>dict-empty?</dd>
- <dt>dict-map</dt>
- <dd>dict-keys</dd>
- <dd>dict-ref</dd>
- <dd>dict-replace</dd>
-
<dt>dict-filter</dt>
<dd>dict-keys</dd>
<dd>dict-ref</dd>
@@ -610,23 +603,24 @@ new dictionary types that may not have complete dictionary APIs:</p>
<dt>dict-map-&gt;list</dt>
<dd>dict-fold</dd>
- <dd>dict-map-&gt;list</dd>
-
- <dt>dict-for-each&gt;</dt>
- <dd>dict-for-each</dd>
-
- <dt>dict-for-each&gt;=</dt>
- <dd>dict-for-each</dd>
+ <dt>dict-for-each</dt>
+ <dd>dict-map or dict-map!</dd>
<dt>dict-&gt;generator</dt>
- <dd>dict-entries</dd>
+ <dd>dict-for-each</dd>
<dt>dict-set-accumulator</dt>
<dd>dict-set</dd>
+ <dt>dict-set!-accumulator</dt>
+ <dd>dict-set!</dd>
+
<dt>dict-adjoin-accumulator</dt>
<dd>dict-set</dd>
+ <dt>dict-adjoin!-accumulator</dt>
+ <dd>dict-adjoin!</dd>
+
</dl>
<h2 id="acknowledgements">Acknowledgements</h2>