Type signature inside an instance declaration
Neil Mitchell
ndmitchell at gmail.com
Tue Dec 16 07:35:47 EST 2008
Hi
> You want to use `asTypeOf`, with a lazy pattern to name a value of type 'a'.
>
> pr xs = "[" ++ pr (undefined `asTypeOf` x) ++ "]"
> where (x:_) = xs
I prefer:
pr xs = "[" ++ pr (undefined `asTypeOf` head x) ++ "]"
Or even more simply:
pr xs = "[" ++ pr (head x) ++ "]"
I do believe there is some GHC extension that can be turned on to
refer to variables like you did, but its not standard Haskell.
Thanks
Neil
More information about the Glasgow-haskell-users
mailing list