Function: projectile--backend-available-p
projectile--backend-available-p is a byte-compiled function defined in
projectile.el.
Signature
(projectile--backend-available-p BACKEND)
Documentation
Return non-nil when BACKEND, a (NAME . PLIST) descriptor, is usable.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile--backend-available-p (backend)
"Return non-nil when BACKEND, a (NAME . PLIST) descriptor, is usable."
(let ((predicate (plist-get (cdr backend) :available)))
(or (null predicate) (funcall predicate))))