Hal Daume III wrote:

> if I have
> 
> newtype Foo = Foo Int
> 
> and i want to make it an instance of typeable, how do I create a TypeRep
> object?

        fooTc :: TyCon
        fooTc = mkTyCon "Foo"
        
        instance Typeable Foo where
            typeOf _ = mkAppTy fooTc []

-- 
Glynn Clements <[EMAIL PROTECTED]>
_______________________________________________
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users

Reply via email to