Function: hash-table-empty-p

hash-table-empty-p is a byte-compiled function defined in subr-x.el.gz.

Signature

(hash-table-empty-p HASH-TABLE)

Documentation

Check whether HASH-TABLE is empty (has 0 elements).

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/subr-x.el.gz
(defsubst hash-table-empty-p (hash-table)
  "Check whether HASH-TABLE is empty (has 0 elements)."
  (declare (side-effect-free t))
  (zerop (hash-table-count hash-table)))