Function: comp-type-hint-p

comp-type-hint-p is a byte-compiled function defined in comp.el.gz.

Signature

(comp-type-hint-p FUNC)

Documentation

Type-hint predicate for function name FUNC.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(defun comp-type-hint-p (func)
  "Type-hint predicate for function name FUNC."
  (when (memq func comp-type-hints) t))