Function: HASH-TABLE-VALUES

Source

(defun hash-table-values (hash-table)
  (loop
     for v being the hash-values of hash-table
     collect v))
Source Context