Elisp: Hash Table to List
Convert Hashtable to Association List
use map-pairs
xah-hash-to-list (obsolete)
(defun xah-hash-to-list (HashTable) "Return a list that represent the hashtable HashTable. Each element is a proper list: (key value). URL `http://xahlee.info/emacs/emacs/elisp_hash_table_to_list.html' Created: 2019-06-11 Version: 2022-09-22" (let (xx) (maphash (lambda (k v) (push (list k v) xx)) HashTable) xx))