On Sunday, October 26, 2014 11:43:23 PM UTC-4, Alex Miller wrote:
>
> ### 1.4 update - like update-in for first level
>
> `update` is a new function that is like update-in specifically for 
> first-level keys:
>
>     (update m k f args...)
>
> Example use:
>
>     user> (update {:a 1} :a inc)
> {:a 2}
> user> (update {:a 1} :a + 2)
> {:a 3}
> user> (update {} :a identity)  ;; missing returns nil
> {:a nil}
>
> * [CLJ-1251](http://dev.clojure.org/jira/browse/CLJ-1251)
>

Should there not also be an update! for transients, then, just as the other 
single-level map writer that has an -in variant, assoc, has assoc! for 
transients?

-- 
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/d/optout.

Reply via email to