Liking cljdoc? Tell your friends :D
Clojure only.

io.github.frenchy64.fully-satisfies.everyp

An implementation of clojure.core/every-pred with a simple operational equivalence.

An implementation of clojure.core/every-pred with a simple operational equivalence.
raw docstring

every-predclj

source

everypclj

(everyp)
(everyp p)
(everyp p1 p2)
(everyp p1 p2 p3)
(everyp p1 p2 p3 & ps)

Combines predicates into a variable-arity conjunction.

Operationally equivalent to:

(defn everyp [& ps] (fn [& args] (every? #(every? % args) ps)))

Combines predicates into a variable-arity conjunction.

Operationally equivalent to:

  (defn everyp [& ps]
    (fn [& args] (every? #(every? % args) ps)))
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close