Given a Java instance 'store' with a .connect method that takes a host, port, 
user and password, and given a hash-map 'config' with corresponding keyword 
values, I wanted to do something like:

(apply .connect store (map config [:host :port :user :password]))

rather than:

(.connect store (:host config) (:port config) (:user config) (:password config))

but of course the former doesn't work, since .connect isn't a regular function. 
Is there a concise way to accomplish this?

-Michael

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