Hi, On Jan 22, 12:11 pm, Jacek Generowicz <[email protected]> wrote:
> Am I reinventing some wheel? > > If not, does Clojure provide any run-time binding mechanisms which > would allow this concept be made to work with maps which do not become > available until run-time? You might want to investigate with-bindings and with-bindings*. http://github.com/richhickey/clojure/blob/master/src/clj/clojure/core.clj#L1312 Note: the map must contain Vars as keys, that means in particular that a, b and c in your example must exist (eg. (declare a b c)). Sincerely Meikel -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en
