diff options
| author | 2022-03-15 15:32:54 -0400 | |
|---|---|---|
| committer | 2022-03-15 15:32:54 -0400 | |
| commit | a7f2c6a51139c210e4d62ab1447830cc525de21a (patch) | |
| tree | 2c15cebeda8c756bb9139a4cd3ef786266c02604 /srfi-225.html | |
| parent | Update srfi-225.html (diff) | |
| parent | fix srfi 125 implementation (diff) | |
Merge pull request #3 from arvyy/master
Implementation update
Diffstat (limited to 'srfi-225.html')
| -rw-r--r-- | srfi-225.html | 24 |
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->alist</code> <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> <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->list</dt> <dd>dict-fold</dd> - <dd>dict-map->list</dd> - - <dt>dict-for-each></dt> - <dd>dict-for-each</dd> - - <dt>dict-for-each>=</dt> - <dd>dict-for-each</dd> + <dt>dict-for-each</dt> + <dd>dict-map or dict-map!</dd> <dt>dict->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> |
