Function: cl-rassoc-if-not

cl-rassoc-if-not is an autoloaded and byte-compiled function defined in cl-seq.el.gz.

Signature

(cl-rassoc-if-not PREDICATE LIST [KEYWORD VALUE]...)

Documentation

Find the first item whose cdr does not satisfy PREDICATE in LIST.

Keywords supported: :key

View in manual

Aliases

rassoc-if-not (obsolete since 27.1)

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/cl-seq.el.gz
;;;###autoload
(defun cl-rassoc-if-not (pred list &rest cl-keys)
  "Find the first item whose cdr does not satisfy PREDICATE in LIST.
\nKeywords supported:  :key
\n(fn PREDICATE LIST [KEYWORD VALUE]...)"
  (declare (important-return-value t))
  (apply #'cl-rassoc nil list :if-not pred cl-keys))