On 25/05/13 12:24, Steven Degutis wrote:
The first is: (if (:attr obj) obj (assoc obj :attr something))

I'm basically saying, give this hash-map an attribute if it doesn't already have it. And just return the thing with an attribute, regardless if I had to add it or not.

(if (contains? obj :attr) obj
  (assoc obj :attr something))

it's more evident now, but you still mention obj 3 times...

your second example seems just fine to me...if you have to test for something, well, you have to test for something!!!

Jim

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