Re: Proposals for changes to searching behaviour

2002-12-11 Thread Matt Harden
and make a directory D/Graphics.Rendering.OpenGL/ with the modules inside it. Also it keeps module hierarchy apparent in the directory structure, rather than being buried in a Makefile somewhere. Regards, Matt Harden ___ Glasgow-haskell-users mailing

An attempt at foldr/build fusion for zip

2001-04-22 Thread Matt Harden
foldr2 k n (build f) (build g) = foldr2_both k (bz f n) (bz g n) #-} \end{code} -- END foldr2_both.lhs Best regards, Matt Harden ___ Glasgow-haskell-users mailing list [EMAIL PROTECTED] http://www.haskell.org/mailman/listinfo/glasgow-haskell-users

Instance of Functor for functions of = 2 arguments

2000-06-23 Thread Matt Harden
instance Functor (Func2 a b) where fmap g (Func2 f) = Func2 (\x y - g (f x y)) ...but I think this is ugly and it really doesn't accomplish what I want. Any ideas? Thanks, Matt Harden

Re: GHC Version numbers (was: RE: 4.07 release candidate snapshot ava ilable)

2000-06-19 Thread Matt Harden
od idea to me, as long as the rules to convert version strings to/from numbers are very solid, and the relationship is 1:1. I support Simon Marlow's proposal as it stands, with the possible addition of the --numeric-version option. Thanks, Matt Harden