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 rehash threshold of TABLE.

This function is for compatibility only; it returns a nominal value without current significance.

Probably introduced at or before Emacs version 21.1.

Source Code

// Defined in /usr/src/emacs/src/fns.c
{
  CHECK_HASH_TABLE (table);
  return make_float (0.8125);  /* The old default rehash-threshold value.  */
}