Function: helpful--bound-p
helpful--bound-p is a byte-compiled function defined in helpful.el.
Signature
(helpful--bound-p SYMBOL)
Documentation
Return non-nil if SYMBOL is a variable, callable, or face.
This differs from boundp because we do not consider nil, t
or :foo.
Source Code
;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
(defun helpful--bound-p (symbol)
"Return non-nil if SYMBOL is a variable, callable, or face.
This differs from `boundp' because we do not consider nil, t
or :foo."
(or (fboundp symbol)
(helpful--variable-p symbol)
(facep symbol)))