
19 May
2006
19 May
'06
10:18 p.m.
Greg Buchholz wrote:
instance Apply a b c => Apply (a->b) b (a,c) where
Whoops, instead of that, I think I meant... instance Apply (b->c) c d => Apply (a->b->c) (b->c) (a,d) where ...where we strip off one layer of types, because of the recursion. Of course, that still doesn't work though. Greg Buchholz