Send Beginners mailing list submissions to
[email protected]
To subscribe or unsubscribe via the World Wide Web, visit
http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners
or, via email, send a message with subject or body 'help' to
[email protected]
You can reach the person managing the list at
[email protected]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Beginners digest..."
Today's Topics:
1. Re: Overlapping instances problem (David McBride)
2. Re: Overlapping instances problem (Baa)
----------------------------------------------------------------------
Message: 1
Date: Fri, 1 Dec 2017 08:28:30 -0500
From: David McBride <[email protected]>
To: The Haskell-Beginners Mailing List - Discussion of primarily
beginner-level topics related to Haskell <[email protected]>
Subject: Re: [Haskell-beginners] Overlapping instances problem
Message-ID:
<can+tr41pcsooyxxsurviwdsuhq26jtus9bk_ezdcnphmb9e...@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"
What happens if type 'a' is both an instance EnumTag and StrTag at the same
time? Then which instance does it choose? You may know that can't happen
in your code, but there's no guarantee that someone using your library or
that some import won't bring such a type into scope.
Because of this ambiguity, during type checking haskell ignores class
contexts and merely looks at the instance head (Read a), and says hey there
are two instances 'Read a', they are overlapping.
As to what to do about it, I'm not sure. But I don't think I would be
trying to get different read instances based on whatever typeclasses happen
to be in scope for that type.
On Fri, Dec 1, 2017 at 6:57 AM, Baa <[email protected]> wrote:
> Hello, List!
>
> I got error:
>
> Duplicate instance declarations:
> instance [overlap ok] EnumTag a => Read a
> -- Defined at /XXX/intero/intero2932Xpa-TEMP.hs:110:27
> instance [overlap ok] StrTag a => Read a
> -- Defined at /XXX/intero/intero2932Xpa-TEMP.hs:121:27 (intero)
>
> For this code:
>
> class (Show a, Enum a) => EnumTag a where
> anyEnum :: a
>
> instance {-# OVERLAPS #-} EnumTag a => Read a where
> readPrec = RP.lift P.skipSpaces >> expectEnum
> instance {-# OVERLAPS #-} EnumTag a => Eq a where
> a == b | a == anyEnum || b == anyEnum = True
> | otherwise = fromEnum a == fromEnum b
>
> class StrTag a where
> anyStr :: a
> tagPrefix :: a -> String -- ^ should be constant
> toStr :: String -> a
>
> instance {-# OVERLAPS #-} StrTag a => Read a where
> readPrec = parens $ do
> RP.lift P.skipSpaces
> (RP.lift $ expectShown anyStr) <++ RP.lift g
> where g = do
> Just s@(_:_) <- L.stripPrefix tagPrefix <$> expectTag
> return $ toStr s
>
> Why does it happen? `Read a` in 1st instance is valid only when a is
> `EnumTag`, in 2nd one - is valid only when a is `StrTag`.
>
> How can I fix this error and to create "default" instances for `EnumTag`
> and to `StrTag`, so client code will "inherit" those functionality
> (`Read`) simple, only with instantiation of `EnumTag` or `StrTag` ?
>
> Sure, if I comment `instance ... StrTag a` then all work fine, but I need
> 2 specialized `Read`s (and `Eq`s too :)
>
> ===
> Best regards, Paul
> _______________________________________________
> Beginners mailing list
> [email protected]
> http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
<http://mail.haskell.org/pipermail/beginners/attachments/20171201/ef570350/attachment-0001.html>
------------------------------
Message: 2
Date: Fri, 1 Dec 2017 16:10:57 +0200
From: Baa <[email protected]>
To: [email protected]
Subject: Re: [Haskell-beginners] Overlapping instances problem
Message-ID: <20171201161057.43bbfbbe@Pavel>
Content-Type: text/plain; charset=US-ASCII
Thanks, I got it. So I workarounded the problem with newtypes (all
"default" instances are for newtypes, my types are wrapping in those
newtypes).
===
Best regards, Paul
> What happens if type 'a' is both an instance EnumTag and StrTag at
> the same time? Then which instance does it choose? You may know
> that can't happen in your code, but there's no guarantee that someone
> using your library or that some import won't bring such a type into
> scope.
>
> Because of this ambiguity, during type checking haskell ignores class
> contexts and merely looks at the instance head (Read a), and says hey
> there are two instances 'Read a', they are overlapping.
>
> As to what to do about it, I'm not sure. But I don't think I would be
> trying to get different read instances based on whatever typeclasses
> happen to be in scope for that type.
>
> On Fri, Dec 1, 2017 at 6:57 AM, Baa <[email protected]> wrote:
>
> > Hello, List!
> >
> > I got error:
> >
> > Duplicate instance declarations:
> > instance [overlap ok] EnumTag a => Read a
> > -- Defined at /XXX/intero/intero2932Xpa-TEMP.hs:110:27
> > instance [overlap ok] StrTag a => Read a
> > -- Defined at /XXX/intero/intero2932Xpa-TEMP.hs:121:27 (intero)
> >
> > For this code:
> >
> > class (Show a, Enum a) => EnumTag a where
> > anyEnum :: a
> >
> > instance {-# OVERLAPS #-} EnumTag a => Read a where
> > readPrec = RP.lift P.skipSpaces >> expectEnum
> > instance {-# OVERLAPS #-} EnumTag a => Eq a where
> > a == b | a == anyEnum || b == anyEnum = True
> > | otherwise = fromEnum a == fromEnum b
> >
> > class StrTag a where
> > anyStr :: a
> > tagPrefix :: a -> String -- ^ should be constant
> > toStr :: String -> a
> >
> > instance {-# OVERLAPS #-} StrTag a => Read a where
> > readPrec = parens $ do
> > RP.lift P.skipSpaces
> > (RP.lift $ expectShown anyStr) <++ RP.lift g
> > where g = do
> > Just s@(_:_) <- L.stripPrefix tagPrefix <$> expectTag
> > return $ toStr s
> >
> > Why does it happen? `Read a` in 1st instance is valid only when a is
> > `EnumTag`, in 2nd one - is valid only when a is `StrTag`.
> >
> > How can I fix this error and to create "default" instances for
> > `EnumTag` and to `StrTag`, so client code will "inherit" those
> > functionality (`Read`) simple, only with instantiation of `EnumTag`
> > or `StrTag` ?
> >
> > Sure, if I comment `instance ... StrTag a` then all work fine, but
> > I need 2 specialized `Read`s (and `Eq`s too :)
> >
> > ===
> > Best regards, Paul
> > _______________________________________________
> > Beginners mailing list
> > [email protected]
> > http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners
> >
------------------------------
Subject: Digest Footer
_______________________________________________
Beginners mailing list
[email protected]
http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners
------------------------------
End of Beginners Digest, Vol 114, Issue 2
*****************************************