Martin Hess wrote:
> How do you pass a method reference and call it on a particular object? I 
> know I can pass it as a string and call eval, but I'm trying to avoid 
> that performance hit.

obj = "something"
method = :reverse
obj.send method # faster than eval

-- 
       vjoel : Joel VanderWerf : path berkeley edu : 510 665 3407