Update documentation
author |
Steve Losh <steve@stevelosh.com> |
date |
Sat, 23 Feb 2019 22:30:19 -0500 |
parents |
de9d10a9b4b5 |
children |
861b0bbcb319 |
(in-package :losh.hash-tables)
(defun mutate-hash-values (function hash-table)
"Replace each value in `hash-table` with the result of calling `function` on it.
Returns the hash table.
"
(iterate (for (key value) :in-hashtable hash-table)
(setf (gethash key hash-table)
(funcall function value)))
hash-table)
(defun hash-table-contents (hash-table)
"Return a fresh list of `(key value)` elements of `hash-table`."
(gathering (maphash (compose #'gather #'list) hash-table)))