Details
-
Type:
Enhancement
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Completed
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: None
-
Labels:None
Description
It's a common pattern to do the following
(defn everyo [g xs]
(if (seq xs)
(all
(g (first xs))
(everyo g (next xs)))
succeed))
We should add this to the standard library.
We have everyg now - the naming and behavior should probably go through some more consideration.