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.
Activity
David Nolen
made changes -
| Field | Original Value | New Value |
|---|---|---|
| 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. |
It's a common pattern to do the following
{code} (defn everyo [g xs] (if (seq xs) (all (g (first xs)) (everyo g (next xs))) succeed)) {code} We should add this to the standard library. |
David Nolen
made changes -
| Resolution | Completed [ 1 ] | |
| Status | Open [ 1 ] | Resolved [ 5 ] |
We have everyg now - the naming and behavior should probably go through some more consideration.