[Haskell-cafe] pattern match on forall'ed data
Corentin Dupont
corentin.dupont at gmail.com
Wed Jul 20 15:18:26 UTC 2016
Hi all,
I'm surprised this doesn't work:
data SomeData = forall e. (Typeable e, Eq e) => SomeData e
(===) :: (Typeable a, Typeable b, Eq a, Eq b) => a -> b -> Bool
(===) x y = cast x == Just y
test :: SomeData' -> Bool
test (SomeData' e) | e === Nothing = True
test _ = False
It says
Could not deduce (Eq a1) arising from a use of ‘===’
How can I achieve something of the same effect?
Thanks
Corentin
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/haskell-cafe/attachments/20160720/fbe299bd/attachment.html>
More information about the Haskell-Cafe
mailing list