> If you are looking, for some reason I can't imagine at the moment, for a > function that acts just like a funcall, so that > (funcall f [i]) is exactly equivalent to (f [i]), I guess you are out of > luck. >
I can give you a reason: applying a curried function. On first sight that may seem like a rare use case, but actually nested maps are just that, and quite common. But Clojure users are far from being out of luck: (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