Function: ht-set!

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

Signature

(ht-set! TABLE KEY VALUE)

Documentation

Associate KEY in TABLE with VALUE.

Aliases

ht-set

Source Code

;; Defined in ~/.emacs.d/elpa/ht-20230703.558/ht.el
(define-inline ht-set! (table key value)
  "Associate KEY in TABLE with VALUE."
  (inline-quote
   (prog1 nil
     (puthash ,key ,value ,table))))