Package: alexandria
Function hash-table-keys
Lambda Listhash-table-keys (table) ArgumentsReturn Valuea list Details Returns a list containing the keys of the hash table table. Examples(defvar table (make-hash-table)) => TABLE (setf (gethash 'Germany table) 'Berlin) => BERLIN (setf (gethash 'France table) 'Paris) => PARIS (setf (gethash 'Britain table) 'London) => LONDON (hash-table-keys table) => (FRANCE BRITAIN GERMANY) | See also |