Skip to content

Instantly share code, notes, and snippets.

@tomjack
Created October 6, 2011 04:18
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 tomjack/56dc10b22a3d8fdc26c4 to your computer and use it in GitHub Desktop.
Save tomjack/56dc10b22a3d8fdc26c4 to your computer and use it in GitHub Desktop.
user> (->> [["foo" :x] ["bar" :y] ["baz" :y] ["bang" :z] ["bing" :z]]
(partition-by second)
(map (partial map first)))
(("foo") ("bar" "baz") ("bang" "bing"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment