Skip to content

Instantly share code, notes, and snippets.

@swannodette
Forked from amalloy/gist:3092368
Created July 11, 2012 19:13
Show Gist options
  • Save swannodette/3092505 to your computer and use it in GitHub Desktop.
Save swannodette/3092505 to your computer and use it in GitHub Desktop.
(defn everyo [pred coll]
(if (empty? coll)
s#
(all
(pred (first coll))
(everyo pred (rest coll)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment