Function: hash-table-rehash-threshold
hash-table-rehash-threshold is a function defined in fns.c.
Signature
(hash-table-rehash-threshold TABLE)
Documentation
Return the current rehash threshold of TABLE.
Probably introduced at or before Emacs version 21.1.
Source Code
// Defined in /usr/src/emacs/src/fns.c
{
return make_float (check_hash_table (table)->rehash_threshold);
}