code.test.checker.logic
all
added in 3.0
(all & cks)checker that allows and composition of checkers
(mapv (all even? #(< 3 %)) 1 2 3 4 5) => false false false true false
any
added in 3.0
(any & cks)checker that allows or composition of checkers
(mapv (any even? 1) 1 2 3 4 5) => true true false true false
is-not
added in 3.0
(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