Function: hash-size

hash-size is a byte-compiled function defined in hasht.el.

Signature

(hash-size HASH-TABLE)

Documentation

Return size of HASH-TABLE which is >= number of elements in the table.

Return nil if not a valid hash table.

Aliases

hash-length

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hasht.el
(defun hash-size (hash-table)
  "Return size of HASH-TABLE which is >= number of elements in the table.
Return nil if not a valid hash table."
  (when (hash-table-p hash-table)
    (hash-table-size hash-table)))