Newtypes are often used to change the behavior of certain types when used in certain class contexts. For example, one would use the Data.Monoid.All
wrapper to change the behavior of Bool
when used as a Monoid
.
I'm currently writing such a newtype wrapper that would apply to a large range of different types. The wrapper is supposed to change the behavior of one specific class instance. It might look like this:
newtype Wrapper a = Wrapper a
instance Special a => Special (Wrapper a) where
-- ...
However, adding this wrapper will often change the usability of the wrapped type. For example, if I previously was able to use the function mconcat :: Monoid a => [a] -> a
, I am not able to now use it for a list of wrapped values.
I can of course use -XGeneralizedNewtypeDeriving
and newtype Wrapper a = Wrapper a deriving (Monoid)
. However, this only solves the problem for Monoid
and no other class, while I will be dealing with an open world full of different classes, and standalone orphan generalized newtype deriving is not really a practical option. Ideally, I'd like to write deriving hiding (Special)
(deriving every class except Special
), but that's not valid Haskell, of course.
Is there some way of doing this or am I just screwed and need to add a GHC feature request?
Monoid (Wrapper a)
instance, it would detect thatWrapper
is a newtype, and also check whether it had the "implicit derivation" flag. If so, the instance forMonoid a
is simply used. As I understand it, the instance resolution only has to happen once, as the functions called by a function with a declared class context simply blindly re-use the passed-in instance dictionaries of the parent function. There doesn't actually have to be a statically declared specialized instance value in a source file. It would be rather simple to implement, really. – dflemstr