Package: alexandria
Function copy-hash-table
Lambda List
copy-hash-table (table &key key test size rehash-size rehash-threshold)
Arguments
Return Value
A copy of the hash table table.
Details
Returns a copy of hash table table, with the same keys and values as table.
The copy has the same properties as the original, unless overridden by the keyword arguments. Before each of the original values is set into the new hash table, the function key is invoked on the value. As key defaults to identity, a shallow copy is returned by default.
The copy has the same properties as the original, unless overridden by the keyword arguments. Before each of the original values is set into the new hash table, the function key is invoked on the value. As key defaults to identity, a shallow copy is returned by default.