Function: HASH-TABLE-KEYS

Source

(defun hash-table-keys (hash-table)
  (loop
     for k being the hash-keys of hash-table
     collect k))
Source Context