Function: ht-create

ht-create is a byte-compiled function defined in ht.el.

Signature

(ht-create &optional TEST)

Documentation

Create an empty hash table.

TEST indicates the function used to compare the hash keys. Default is equal. It can be eq, eql, equal or a user-supplied test created via define-hash-table-test.

Source Code

;; Defined in ~/.emacs.d/elpa/ht-20230703.558/ht.el
(define-inline ht-create (&optional test)
  "Create an empty hash table.

TEST indicates the function used to compare the hash
keys.  Default is `equal'.  It can be `eq', `eql', `equal' or a
user-supplied test created via `define-hash-table-test'."
  (declare (side-effect-free t))
  (inline-quote (make-hash-table :test (or ,test 'equal))))