Hi,

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 <javascript:>" 1}} ] 
> ) )
>
> I like to alter the result in a transaction to become
> [{:id 1 :emails { "yi...@mail.com <javascript:>" 2}}]    ; increment the 
> counter from 1 to 2
>
> Please can someone provide pointers.
>
>
You can use the uniform update principle to stitch together alter and 
update-in.

(dosync
  (alter result update-in [0 :emails "a@b.c"] inc))

Kind regards
Meikel
 

-- 
-- 
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
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to