Function: orderless-not

orderless-not is a byte-compiled function defined in orderless.el.

Signature

(orderless-not PRED REGEXP)

Documentation

Match strings that do *not* match PRED and REGEXP.

Source Code

;; Defined in ~/.emacs.d/elpa/orderless-20260519.1029/orderless.el
(defun orderless-not (pred regexp)
  "Match strings that do *not* match PRED and REGEXP."
  (lambda (str)
    (not (orderless--match-p pred regexp str))))