Skip to content

Instantly share code, notes, and snippets.

@AeroNotix
Created February 17, 2015 12:31
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 AeroNotix/83e1e4d88f8d96e46ad2 to your computer and use it in GitHub Desktop.
Save AeroNotix/83e1e4d88f8d96e46ad2 to your computer and use it in GitHub Desktop.
(let [needle '[a b]
haystack '[[a b] a]
found? (atom false)]
(clojure.walk/walk #(when (= %1 needle) (reset! found? true))
identity haystack)
found?)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment