Skip to content

Instantly share code, notes, and snippets.

@yogthos
Created February 1, 2013 23:33
Show Gist options
  • Save yogthos/4694924 to your computer and use it in GitHub Desktop.
Save yogthos/4694924 to your computer and use it in GitHub Desktop.
(defn sorted-key-list
[& maps]
(or
(->>
(mapcat keys maps)
set
(map str)
sort
(clojure.string/join ", ")
not-empty)
"<none>"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment