New Wiki (was: Re: ANNOUNCE: Haskell Wiki resurrected )

2003-01-03 Thread Keith Wansbrough
There have been several suggestions that we switch from the present pywiki, which has proven rather unstable, to something a little more modern and reliable. IIRC, the suggestions have been MoinMoin http://moin.sourceforge.net/ UseModhttp://www.usemod.com/cgi-bin/wiki.pl?UseModWiki al

Re: tuple component functions

2003-01-03 Thread Ketil Z. Malde
<[EMAIL PROTECTED]> writes: > S.D.Mechveliani writes: >> As Haskell has the standard functions fst, snd to decompose (a,b), >> maybe, it worths to provide also [...] > I've found some of these useful, except I named them differently: >> fst3 :: (a,b,c) -> a >> snd3 :: (a,b,c) -> b >> thd3 ::

Re: ICFP programming contest

2003-01-03 Thread Pixel
<[EMAIL PROTECTED]> writes: > Michael Hobbs writes: > > Just took a look at the results for the ICFP contest. Am I correct in > > assuming that "LA" stands for Lennart Augustsson and that "Si^3" stands > > for Simon Marlow, Simon Peyton-Jones, Sigbjorn Finne? > > Is there a URL for the results

final call for papers icalp 2003

2003-01-03 Thread icalp2003
--Final Call For Papers We apologize for the reception of multiple copies of this message.

Re: tuple component functions

2003-01-03 Thread Nils Decker
[EMAIL PROTECTED] (Ketil Z. Malde) wrote: > I'd like a general 'nth', but of course that would restrict us to > monotyped tuples (e.g., > > nth :: Int -> (a,a,...,a,a) -> a > ) Under [1] you find an interesting proposal for Template Haskell. I don't know, how far it is from beiing imple

Re: tuple component functions

2003-01-03 Thread Wolfgang Jeltsch
Hi! > [...] > > twin :: a -> (a,a) > > twin x = (x,x) By using the Monad instance of ((->) a), defined in Control.Monad.Reader, one can write join (,) for twin. (And, by the way, one can use join for functions in several other useful ways. For example, one can write join (*) for a squaring fu