Function: orderless--match-p

orderless--match-p is a byte-compiled function defined in orderless.el.

Signature

(orderless--match-p PRED REGEXP STR)

Documentation

Return t if STR matches PRED and REGEXP.

Source Code

;; Defined in ~/.emacs.d/elpa/orderless-20260519.1029/orderless.el
(defsubst orderless--match-p (pred regexp str)
  "Return t if STR matches PRED and REGEXP."
  (and str
       (or (not pred) (funcall pred str))
       (or (not regexp)
           (let ((case-fold-search completion-ignore-case))
             (string-match-p regexp str)))))