I have a Set of objects
(def books #{{:isbn 1 :title "Programming Clojure"}
{:isbn 2 :title "Joy of Clojure"}
{:isbn 3 :title "Clojure in Action"}})
How do i update an object having a given key (:isbn) and return a modified set?
(??? books :isbn {:isbn 1 :title "Programming Clojure" :author "Halloway"})
In Java, equality can be defined using isbn and the element can be directly added to Set. What is the idiomatic way of doing this in Clojure?
:isbnof 1? – djhworld Mar 11 '12 at 17:04