Returns true if (pred x) is logical true for every x in coll, else
false.
Source
(defnevery?"Returns true if (pred x) is logical true for every x in coll, else\n false."[predcoll](cond(nil?(seqcoll))true(pred(firstcoll))(recurpred(nextcoll)):elsefalse))