Skip to content

Instantly share code, notes, and snippets.

@bsteuber
Created July 12, 2011 12:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bsteuber/1077871 to your computer and use it in GitHub Desktop.
Save bsteuber/1077871 to your computer and use it in GitHub Desktop.
(defn rec-find [pred x]
(cond
(pred x) true
(sequential? x) (some #(rec-find pred %)
x)
(map? x) (some #(rec-find pred %)
(vals x))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment