Function: hash-empty-p

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

Signature

(hash-empty-p HASH-TABLE)

Documentation

Return t if HASH-TABLE is empty, else nil.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hasht.el
(defun hash-empty-p (hash-table)
  "Return t if HASH-TABLE is empty, else nil."
  (and (hash-table-p hash-table) (hash-table-empty-p hash-table)))