Re: Recursively convert Java Map to Clojure Map

2020-01-31 Thread Jason Ross
Hey I know this is super old post but what would the reverse look like, eg. recursively convert Clojure to java map On Saturday, October 15, 2011 at 4:10:32 AM UTC-5, Baishampayan Ghose wrote: > > > I have a Java Map contains Map of Maps/List (JSON like map) and have > > to convert to Clojure map

Re: Recursively convert Java Map to Clojure Map

2020-01-31 Thread Jason Ross
If you did really want to convert them to hash-maps or whatever, it's > pretty easy to do so with a clojure.walk/postwalk-replace. > > On Friday, January 31, 2020 at 3:07:24 PM UTC-6, Jason Ross wrote: >> >> Hey I know this is super old post but what would the reverse