
5 Mar
2003
5 Mar
'03
2:31 a.m.
Daan Leijen
btw. Maybe you should make the objects the last argument of instance functions. That way, you can use an object oriented style of programming (if you like that):
infixr 0 # -- matches nicely with ($)
(#) :: self -> (self -> a) -> a self # f = f self
FWIW we had (#) in gtk2hs for a while, but in the end it didn't seem so useful, so it was removed Jens