Oops; I didn't finish this thread's subject title.
On Oct 4, 1:41 pm, samppi <[email protected]> wrote:
> I want to do this:
>
> (defn a ...)
> (cache a) ; or (cache #'a) or (cache 'a); it doesn't matter to me
>
> ...instead of this:
>
> (def a (memoize (fn ...)))
>
> That way, it separates the concern of what a does from the
> optimization I'm doing on it. Now, I'm kind of stuck; how should I do
> it?
>
> (defn cache
> "Replaces the function that the given variable refers to
> with a memoizing version of it."
> [fn-var]
> (??? fn-var (memoize @fn-var)))
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---