Created
November 8, 2011 00:40
-
-
Save CampingScorpion/1346666 to your computer and use it in GitHub Desktop.
first-truthy-fn
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn first-truthy-fn | |
"Returns the first function in a seq of functions | |
that evaluates to truthy for the given arguments" | |
[all-preds & args] | |
(loop [[p & more-ps] all-preds] | |
(when p | |
(if (apply p args) p (recur more-ps))))) | |
;; filter version that fails to be lazy: | |
(defn first-truthy-fn [preds & args] | |
(first (filter #(apply % args) preds))) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment