Clojure - 谓词 not-any?



如果集合中任何值的谓词在逻辑上为真,则返回 false,否则返回 true。

语法

以下是语法。

(not-any? p1 col)

参数 − ‘p1’ 是需要测试的谓词。‘col’ 是需要测试的值集合。

返回值 − 如果集合中任何值的谓词在逻辑上为真,则返回 false,否则返回 true。

示例

以下是 Clojure 中 not-any? 的示例。

(ns clojure.examples.example
   (:gen-class))
(defn Example []
   (println (not-any? even? '(2 4 6))))
(Example)

输出

以上程序产生以下输出。

false
clojure_predicates.htm
广告