[Gtk-sharp-list] applets, custom widget, web browsing.
Maurizio Colucci
seguso.forever@tin.it
Mon, 12 Jul 2004 17:18:28 -0700
On Monday 12 July 2004 07:53, Todd Berman wrote:
> On Sat, 2004-07-10 at 19:12 -0700, Maurizio Colucci wrote:
> > That's great to know! Thanks! I will seriously consider porting the app
> > to nemerle+Mono+Gtk#+gtkhtml.
>
> Why nemerle instead of C#?
>
> --Todd
Because the app has a very complex logic that would be unreadable (for me)
without lambdas and higher-order functions.
Example:
def isVisible(self, selectedObjects):
return (forall(selectedObjects,
lambda o: exists(self.requirementsList,
lambda p:p.pred(o))))
bye :-)
Mau