Function: org-match-any-p
org-match-any-p is a byte-compiled function defined in org-macs.el.
Signature
(org-match-any-p RE LIST)
Documentation
Non-nil if regexp RE matches an element in LIST.
Source Code
;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-macs.el
(defun org-match-any-p (re list)
"Non-nil if regexp RE matches an element in LIST."
(cl-some (lambda (x) (string-match-p re x)) list))