On 23 Mar 2010, at 21:04, Robert Lally wrote:

Is there a technical reason that one should prefer the (.method object) syntax over the (. object method) variant or is it purely a style that the community has converged on?

It's purely style. You can easily verify that (.method object) is transformed to (. object method) by macro expansion:

        user> (macroexpand-1 '(.method object))
        (. object method)

The two versions are thus completely equivalent.

Konrad.

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

To unsubscribe from this group, send email to clojure+unsubscribegooglegroups.com or 
reply to this email with the words "REMOVE ME" as the subject.

Reply via email to