Function: ht-update!

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

Signature

(ht-update! TABLE FROM-TABLE)

Documentation

Update TABLE according to every key-value pair in FROM-TABLE.

Aliases

ht-update

Source Code

;; Defined in ~/.emacs.d/elpa/ht-20230703.558/ht.el
(defun ht-update! (table from-table)
  "Update TABLE according to every key-value pair in FROM-TABLE."
  (maphash
   (lambda (key value) (puthash key value table))
   from-table)
  nil)