In clojure, what is the idiomatic way to convert a keyword:
:some-keyword
to a string:
"some-keyword"
|
In clojure, what is the idiomatic way to convert a keyword:
to a string:
|
||||
|
|
|
As Alex Ott mentionned, name is the best function for this, clojure.contrib also has a function you can call on any type: as-str which does this too:
See http://clojure.github.com/clojure-contrib/string-api.html#clojure.contrib.string/as-str |
||||
|
|