Function: ht-contains?--inliner

ht-contains?--inliner is a function defined in ht.el.

Signature

(ht-contains?--inliner INLINE--FORM TABLE KEY)

Source Code

;; Defined in ~/.emacs.d/elpa/ht-20230703.558/ht.el
;; Closure converted to defun by helpful.
(defun ht-contains\?--inliner
    (inline--form table key)
  (ignore inline--form)
  (catch 'inline--just-use
    (list 'let
	  (list
	   (list 'not-found-symbol
		 (list 'make-symbol "ht--not-found")))
	  (list 'not
		(list 'eq
		      (list 'ht-get table key 'not-found-symbol)
		      'not-found-symbol)))))