(all & cks)checker that allows and composition of checkers
(mapv (all even? #(< 3 %)) [1 2 3 4 5]) => [false false false true false]
checker that allows `and` composition of checkers
(mapv (all even? #(< 3 %))
[1 2 3 4 5])
=> [false false false true false](any & cks)checker that allows or composition of checkers
(mapv (any even? 1) [1 2 3 4 5]) => [true true false true false]
checker that allows `or` composition of checkers
(mapv (any even? 1)
[1 2 3 4 5])
=> [true true false true false](is-not ck)(is-not ck function)checker that allows negative composition of checkers
(mapv (is-not even?) [1 2 3 4 5]) => [true false true false true]
checker that allows negative composition of checkers
(mapv (is-not even?)
[1 2 3 4 5])
=> [true false true false true]cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |