Why Nostr? What is Njump?
2023-09-13 12:26:56
in reply to

Louis on Nostr: npub1dtw0v…885ra You probably have to get all the keys first: (defun ...

You probably have to get all the keys first:

(defun hash-table-keys (hash-table)
(let ((keys ()))
(maphash (lambda (k v) (push k keys)) hash-table)
keys))


and then run your own iteration. You are right, hash tables are not a first class citizen in Elisp, unfortunately.
Author Public Key
npub1tp9e9qhmc02khh3jzpn8vmqwhj3u25yw352ed2x87zs4e2ps2uwqhadzfn