in reply to Re^3: Near-free function currying in Perl
in thread Near-free function currying in Perl
You can't just pass a filehandle because then you cannot do interesting things with a message before logging it or maybe decide not to log it at all (unless you tie the filehandle but please don't go there).
The only other way that has the same flexibility is to pass in a logging object, which has a log() method.
When it comes down to it, a closure and an object with one method are pretty much equivalent, they both store a state and they both have a behaviour which can be invoked. The difference is that it's a lot easier to construct a closure on the fly whereas an object needs an entire class.
The Tk framework is full of things that take a callback. Tk programmers have to write lots of closures. I used to do loads of Tk work (back in the 2oth century :-) and looking back, I frequently found myself currying functions although I didn't have a name for it at the time.
Frameworks in functional languages like lisp and Haskell do this too because it's easy to do for them as currying is built in and is the "natural" way to do this for their programmers.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^5: Near-free function currying in Perl
by BrowserUk (Patriarch) on Nov 17, 2004 at 13:37 UTC | |
by fergal (Chaplain) on Nov 17, 2004 at 14:59 UTC |