Created
July 31, 2017 15:54
-
-
Save Bost/61b5b2b6eecf786daa5b702011b5efda to your computer and use it in GitHub Desktop.
clojure: various utils
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 in? | |
"true if seq contains elm" | |
[seq elm] | |
(boolean (some (fn [e] (= elm e)) seq))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment