Function: projectile--any-marker-p
projectile--any-marker-p is a byte-compiled function defined in
projectile.el.
Signature
(projectile--any-marker-p MARKER)
Documentation
Return non-nil when MARKER is an alternatives clause.
Such a clause has the form (:any FILE...) and is satisfied by any one
of its FILEs; see projectile-register-project-type.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile--any-marker-p (marker)
"Return non-nil when MARKER is an alternatives clause.
Such a clause has the form (:any FILE...) and is satisfied by any one
of its FILEs; see `projectile-register-project-type'."
(and (consp marker) (eq (car marker) :any)))