Function: ht-size
ht-size is a byte-compiled function defined in ht.el.
Signature
(ht-size TABLE)
Documentation
Return the actual number of entries in TABLE.
Source Code
;; Defined in ~/.emacs.d/elpa/ht-20230703.558/ht.el
(define-inline ht-size (table)
"Return the actual number of entries in TABLE."
(declare (side-effect-free t))
(inline-quote
(hash-table-count ,table)))