Hi Ken,
Just wrapping your macro with the following would save you the trouble of
having to enumerate the local variables ...
(defmacro eval-with-local-bindings [sexp]
  `(eval-with-local-vars ~(apply vector (keys &env)) ~sexp))
Sunil.

On Mon, Nov 29, 2010 at 6:22 PM, Sunil S Nandihalli <
sunil.nandiha...@gmail.com> wrote:

> That was really neat ken ... eval-with-local-vars.. I think it should be
> part of the core...
> Sunil.
>
>
> On Sun, Nov 28, 2010 at 8:02 AM, Ken Wesson <kwess...@gmail.com> wrote:
>
>> Caveat: since eval-with-local-vars is a macro you won't be able to
>> directly use it in HOFs. Wrapping it in a closure works, however:
>>
>> user=> (let [a 1 b 2] (map #(eval-with-local-vars [a b] %) ['(+ a b) '(* a
>> b)]))
>> (3 2)
>>
>> --
>> 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<clojure%2bunsubscr...@googlegroups.com>
>> For more options, visit this group at
>> http://groups.google.com/group/clojure?hl=en
>>
>
>

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