Skip to content

Instantly share code, notes, and snippets.

@dsp
Created June 29, 2010 02:00
Show Gist options
  • Save dsp/456681 to your computer and use it in GitHub Desktop.
Save dsp/456681 to your computer and use it in GitHub Desktop.
(defn filter-keys [coll & keys]
(apply hash-map
(mapcat identity
(filter #(contains? (apply hash-set keys) (key %)) coll))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment