Function: helpful--compiled-p
helpful--compiled-p is a byte-compiled function defined in helpful.el.
Signature
(helpful--compiled-p SYM)
Documentation
Return non-nil if function SYM is byte-compiled
Source Code
;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
(defun helpful--compiled-p (sym)
"Return non-nil if function SYM is byte-compiled"
(and (symbolp sym)
(byte-code-function-p (symbol-function sym))))