Skip to content

Instantly share code, notes, and snippets.

@Bost
Created July 31, 2017 15:54
Show Gist options
  • Save Bost/61b5b2b6eecf786daa5b702011b5efda to your computer and use it in GitHub Desktop.
Save Bost/61b5b2b6eecf786daa5b702011b5efda to your computer and use it in GitHub Desktop.
clojure: various utils
(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