{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE PolyKinds #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE UndecidableInstances #-}
module Data.Barbie.Internal.Instances ( Barbie(..) )
where
import Data.Barbie.Internal.Constraints
import Data.Barbie.Internal.Dicts
import Data.Barbie.Internal.Functor
import Data.Barbie.Internal.Traversable
import Data.Barbie.Internal.Product
import Data.Barbie.Internal.ProductC
import Data.Kind (Type)
import Data.Semigroup (Semigroup, (<>))
newtype Barbie (b :: (k -> Type) -> Type) f
= Barbie { getBarbie :: b f }
deriving (FunctorB, ProductB, ProductBC)
instance ConstraintsB b => ConstraintsB (Barbie b) where
type AllB c (Barbie b) = AllB c b
baddDicts = Barbie . baddDicts . getBarbie
instance TraversableB b => TraversableB (Barbie b) where
btraverse f = fmap Barbie . btraverse f . getBarbie
instance (ProductBC b, AllBF Semigroup f b) => Semigroup (Barbie b f) where
(<>) = bzipWith3 mk bdicts
where
mk :: Dict (ClassF Semigroup f) a -> f a -> f a -> f a
mk = requiringDict (<>)
instance (ProductBC b, AllBF Semigroup f b, AllBF Monoid f b) => Monoid (Barbie b f) where
mempty = bmempty
mappend = (<>)