Page 1 of 1

Self evaluating results of rb-tree lookups?

Posted: Thu Jun 10, 2010 7:37 am
by TedWalther
I want to stash some code in red-black trees. I'd like it to automatically execute when I access it.

For instance,

(foo "bar" '(println "hi"))

When I do

(foo "bar")

I want the result to be

true

And also have the side effecting of printing "hi" to the console.

What is the best way to go about doing this?

Re: Self evaluating results of rb-tree lookups?

Posted: Thu Jun 10, 2010 9:08 am
by TedWalther
I just had to overcome my fear of eval. Problem solved.