Function: ht-remove!

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

Signature

(ht-remove! TABLE KEY)

Documentation

Remove KEY from TABLE.

Aliases

ht-remove

Source Code

;; Defined in ~/.emacs.d/elpa/ht-20230703.558/ht.el
(define-inline ht-remove! (table key)
  "Remove KEY from TABLE."
  (inline-quote (remhash ,key ,table)))