如果集合中值的任何谓词在逻辑上为true,则返回false,否则返回true。
not-any? - 语法
(not-any? p1 col)
参数 - 'p1'是需要测试的pattern。 " col"是需要测试的值的集合。
返回值 - 如果集合中值的任何断言在逻辑上为true,则返回false,否则返回true。
not-any? - 示例
(ns clojure.examples.example (:gen-class)) (defn Example [] (println (not-any? even? '(2 4 6)))) (Example)
上面的程序产生以下输出。
false
参考链接
https://www.learnfk.com/clojure/clojure-predicates-notany.html
标签:返回,Clojure,false,无涯,Example,clojure,true,any From: https://blog.51cto.com/u_14033984/8069758