Function: hash-count
hash-count is a byte-compiled function defined in hasht.el.
Signature
(hash-count HASH-TABLE)
Documentation
Return element count in HASH-TABLE or nil if not a valid hash table.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hasht.el
(defun hash-count (hash-table)
"Return element count in HASH-TABLE or nil if not a valid hash table."
(when (hash-table-p hash-table)
(hash-table-count hash-table)))