off-topic

https://github.com/clojurians/community-development/blob/master/Code-of-Conduct.md Clojurians Slack Community Code of Conduct. Searchable message archives are at https://clojurians-log.clojureverse.org/
borkdude 2020-10-28T22:41:43.070700Z

I found out that update and vector have the largest argument vector of normal defn in clojure.core (so not counting protocols, etc) (unless there's a bug in the code) https://github.com/borkdude/grasp#find-defn-with-largest-arg-vector They have a total of 8 arg symbols (not counting &)

2020-10-28T22:48:36.071700Z

TIL: update was only added in clojure 1.7

2020-10-29T10:24:39.075600Z

yeah i remember having to use (update-in map [key] f) before they added update

2020-10-28T22:49:41.071800Z

oh interesting, update-in existed from the get go. I would have totally expected that the other way around

2020-10-28T23:16:38.072100Z

update is a degenerate form of update-in