http://www.perlmonks.org?node_id=140278


in reply to Re^4: Refactor method calls or not?
in thread Refactor method calls or not?

Indeed, Tilly's node gives essentially the same solution to the problem in Perlish form, but I didn't see it until after I put mine up. (It's also the kind of solution I think it would be easier to think of in Perl if one also knew Lisp - which Tilly does.) Hopefully there's still some value in comparing.

  • Comment on Re: Re: Re: Re: Re: Refactor method calls or not?

Replies are listed 'Best First'.
Re (tilly) 6: Refactor method calls or not?
by tilly (Archbishop) on Jan 22, 2002 at 05:44 UTC
    You can learn an idea in any language that supports it. If it is easier to learn this kind of technique in Lisp, it is because Lisp has a high density of "expert experts". However Perlmonks is not doing too badly on that measure either.

    As for the similarity between the two solutions, they are similar and different. They are conceptually similar in that you institute the idea of code that writes your functions for you. But the ways that they allow you to dynamically generate code are completely unrelated mechanisms, and the difference has implications for memory usage, run-time performance, and flexibility. (The Lisp solution will, all else being equal, use more memory, have better run-time performance (as long as cache-misses are irrelevant), and is more flexible in what you can easily accomplish. Of course all else is not equal...)