Function: orderless--predicate-and

orderless--predicate-and is a byte-compiled function defined in orderless.el.

Signature

(orderless--predicate-and P Q)

Documentation

Combine two predicate functions P and Q with and.

Source Code

;; Defined in ~/.emacs.d/elpa/orderless-20260519.1029/orderless.el
(defun orderless--predicate-and (p q)
  "Combine two predicate functions P and Q with `and'."
  (or (and p q (lambda (x) (and (funcall p x) (funcall q x)))) p q))