Function: cl-count-if-not

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

Signature

(cl-count-if-not PREDICATE SEQ [KEYWORD VALUE]...)

Documentation

Count the number of items not satisfying PREDICATE in SEQ.

Keywords supported: :key :start :end

View in manual

Aliases

count-if-not (obsolete since 27.1)

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/cl-seq.el.gz
;;;###autoload
(defun cl-count-if-not (cl-pred cl-list &rest cl-keys)
  "Count the number of items not satisfying PREDICATE in SEQ.
\nKeywords supported:  :key :start :end
\n(fn PREDICATE SEQ [KEYWORD VALUE]...)"
  (apply 'cl-count nil cl-list :if-not cl-pred cl-keys))