alter a map in a vector (reference)

2013-06-03 Thread Yinka Erinle
Hi, I struggling to find a way to alter a value in a map that resides in a vector. Given I have the following (def result (ref [ { :id 1 :emails { "yi...@mail.com" 1}} ] ) ) I like to alter the result in a transaction to become [{:id 1 :emails { "yi...@mail.com" 2}}]; increment the counter

Re: alter a map in a vector (reference)

2013-06-03 Thread Yinka Erinle
gt; Am Montag, 3. Juni 2013 22:16:54 UTC+2 schrieb Yinka Erinle: >> >> Given I have the following >> (def result (ref [ { :id 1 :emails { "yi...@mail.com" 1}} ] ) ) >> >> I like to alter the result in a transaction to become >> [{:id 1 :emails { "yi

Multiple java class import

2012-12-09 Thread Yinka Erinle
Hi, Is it possible to import multiple java classes using import? e.g (import '(java.naming.*)) Or will I have to import each class separately? Thanks, Yinka. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to cloj

Re: Multiple java class import

2012-12-09 Thread Yinka Erinle
Thanks Jim. I wonder why. On Sunday, December 9, 2012 2:43:54 PM UTC, Jim foo.bar wrote: > > Unfortunately you have to import each class separately...no wild-cards > in ns declarations :-( > > Jim > > On 09/12/12 14:21, Yinka Erinle wrote: > > Hi, > > >

Re: Multiple java class import

2012-12-09 Thread Yinka Erinle
Thanks On Sunday, December 9, 2012 3:11:02 PM UTC, Jim foo.bar wrote: > > Rich explains why here: > > https://groups.google.com/forum/?fromgroups=#!msg/clojure/-gCg_0wmT5o/H7WobsV-yt0J > > Jim > > > On 09/12/12 15:06, Yinka Erinle wrote: > > Thanks Jim