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
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
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
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,
> >
>
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