Function: ht-copy
ht-copy is a byte-compiled function defined in ht.el.
Signature
(ht-copy TABLE)
Documentation
Return a shallow copy of TABLE (keys and values are shared).
Source Code
;; Defined in ~/.emacs.d/elpa/ht-20230703.558/ht.el
(define-inline ht-copy (table)
"Return a shallow copy of TABLE (keys and values are shared)."
(declare (side-effect-free t))
(inline-quote (copy-hash-table ,table)))