Skip to content

Instantly share code, notes, and snippets.

@bpicolo
Created May 27, 2016 02:07
Show Gist options
  • Save bpicolo/1944f5acab0c4361010abe4d53f0ec73 to your computer and use it in GitHub Desktop.
Save bpicolo/1944f5acab0c4361010abe4d53f0ec73 to your computer and use it in GitHub Desktop.
(defn vec-to-map [k vect]
;; Given a key function, k, of 1 arg
;; create a mapping from key->item
;; for the items in a vector
(into {} (map (juxt k identity) vect)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment