Skip to content

Instantly share code, notes, and snippets.

@alexpw
Created June 8, 2014 19:33
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 alexpw/05980266ec3d4dd9714d to your computer and use it in GitHub Desktop.
Save alexpw/05980266ec3d4dd9714d to your computer and use it in GitHub Desktop.
(mapcat (fn [[k coll]] (map vector (repeat k) coll))
[[:a [1 2]] [:b [3 4]]])
=> '([:a 1] [:a 2] [:b 3] [:b 4])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment