I would like to do some magic in a library, allowing a product type to be destructured polymorphically. This is a more or less working mockup illustrating what I'd like to do:
{-# LANGUAGE MultiParamTypeClasses, FunctionalDependencies, FlexibleInstances, UndecidableInstances #-}
newtype Wrapped a = Wrapped { unwrap :: a }
-- our example structure
ex :: (Int, (Int, Int))
ex = (1,(2,3))
class WrapDecomp x y | y -> x where
decomp :: x -> y
instance (WrapDecomp x x', WrapDecomp y y')=> WrapDecomp (x,y) (x',y') where
decomp (x,y) = (decomp x, decomp y)
instance WrapDecomp x (Wrapped x) where
decomp = Wrapped
example = let w = decomp ex
(w0, w1) = decomp ex
(w0', (w1', w2')) = decomp ex :: (Wrapped Int, (Wrapped Int, Wrapped Int))
in print $ ( unwrap w, unwrap w0, unwrap $ snd w1, unwrap $ fst w1 )
-- Also works:
-- in print $ ( unwrap w, unwrap w0, unwrap w1 )
My actual application is a library, and will have two properties that make the warts I noticed in the above acceptable:
the
Wrappedtype constructor is not exportedthe user will always be calling
unwrapon allWrappeddata in a binding (because of boring details of my application), so there shouldn't be ambiguity in practice
The consensus seems to be that UndecidableInstances isn't really bad, but I'd like to be sure the above is kosher before I proceed.
Update w/ solution
I puzzled with this for a bit, but I was able to solve my problem with TypeFamilies as follows:
{-# LANGUAGE TypeFamilies #-}
class Out a where
type In a :: *
decomp :: In a -> a
instance Out (Wrapped a) where
type In (Wrapped a) = a
decomp = Wrapped
instance (Out a, Out b)=> Out (a,b) where
type In (a,b) = (In a,In b)
decomp (x,y) = (decomp x, decomp y)

newtypepackage Your instance for pairs of wrapped things is different from anything that library seems to be anticipating, though. – applicative Aug 4 '12 at 19:30TypeFamiliesand edited above. Thanks for helping me understandUndecidableInstances. – jberryman Aug 6 '12 at 14:32