On 01-Dec-2000, Eric Allen Wohlstadter <[EMAIL PROTECTED]> wrote:
> Is there a way to make a list that contains multiple types? If not, why,
> and isn't this a serious restriction? I would like to be able to say:
> 
> map show ['a',5]
> 
> Since both Char and Num derive Show it seems like a reasonable thing to
> do.

You can't do it in standard Haskell, but with ghc extensions you can
achieve the same effect.  For example, the following program

        data Showable = forall a . Show a => Showable a
        instance Show Showable where
                show (Showable x) = show x
        
        example = map show [Showable 'a', Showable 5]

        main = print example

produces the output

        ["'a'","5"]

See http://www.haskell.org/ghc/docs/latest/set/existential-quantification.html
for more details.

-- 
Fergus Henderson <[EMAIL PROTECTED]>  |  "I have always known that the pursuit
                                    |  of excellence is a lethal habit"
WWW: <http://www.cs.mu.oz.au/~fjh>  |     -- the last words of T. S. Garp.

_______________________________________________
Haskell-Cafe mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to