On Mon, Nov 09, 2009 at 11:42:32PM +0100, Michael Jaaka wrote:

>How to convert HashMap<String, String> to Clojure map, sorted-map,
>tree-map

   (into {} hm)
or
   (into (sorted-map) hm)

where hm is the hash map.

You can also just use the hash map like you would a Clojure map, but
it might change on you, since it is mutable.

David

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to