Hi, On Fri, Jun 19, 2009 at 1:30 AM, Howard Lewis Ship <hls...@gmail.com> wrote:
> I have code that gets passed a map (actually a struct-map), should I > > (my-map :my-key) > or > (:my-key my-map) > > I'm beginning to gravitate towards the latter, as it is more tolerant of > the map being nil. I would further your reasoning on tolerance: it depends on whether the key, the map or both are variable. (key map) is safe as long as you know that key is a symbol or a keyword. (map key) is safe as long as you know that map will not be nil. (get map key) never fails ((get (Object.) (Object.)) returns nil) Christophe -- Professional: http://cgrand.net/ (fr) On Clojure: http://clj-me.blogspot.com/ (en) --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---