Haskell 1.3 Libraries Available for Comment

1996-10-28 Thread Kevin Hammond
The current draft of the Haskell 1.3 Libraries is now available for public comment at ftp://ftp.dcs.st-and.ac.uk/pub/haskell/lib-28-Oct-96.{ps,dvi} in either PostScript or DVI format (HTML will follow). The document defines the required libraries for conforming Haskell 1.3 implementatio

Re: Type inference bug?

1996-10-28 Thread Koen Claessen
On Thu, 24 Oct 1996, Benedict R. Gaster wrote: | > class Sequence a s where | > cons :: a -> s -> s | > nth :: s -> Int -> a | > len :: s -> Int | | > instance Sequence a (List a) where | >