> As for your suggestion of a (funcall f [i]) that behaves just like (f 
> [i]), I can't imagine any possible purpose for that in Clojure.  Why would 
> you not just write (f [i])?  
>

Well, why don't you start with my example? Try rewriting this without OP's *
apply*, implemented here as #(%1 %2).

 (defn apply-curried [f & args] (reduce #(%1 %2) f args))

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

Reply via email to