Function: ht-clear!

ht-clear! is a byte-compiled function defined in ht.el.

Signature

(ht-clear! TABLE)

Documentation

Remove all keys from TABLE.

Aliases

ht-clear

Source Code

;; Defined in ~/.emacs.d/elpa/ht-20230703.558/ht.el
(define-inline ht-clear! (table)
  "Remove all keys from TABLE."
  (inline-quote
   (prog1 nil
     (clrhash ,table))))