Skip to content

Instantly share code, notes, and snippets.

@drankard
Created November 11, 2011 13:00
Show Gist options
  • Save drankard/1357946 to your computer and use it in GitHub Desktop.
Save drankard/1357946 to your computer and use it in GitHub Desktop.
Clojure or equals func (or= expr & args)
(defn or= [expr & args]
(some #(= expr %) args))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment