Function: helpful--native-compiled-p

helpful--native-compiled-p is a byte-compiled function defined in helpful.el.

Signature

(helpful--native-compiled-p SYM)

Documentation

Return non-nil if function SYM is native-compiled

Source Code

;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
(defun helpful--native-compiled-p (sym)
  "Return non-nil if function SYM is native-compiled"
  (and (symbolp sym)
       (fboundp 'subr-native-elisp-p)
       (subr-native-elisp-p (symbol-function sym))))