dependent-sum-0.3.1.0: src/Data/Dependent/Sum/Typeable.hs
{-# LANGUAGE CPP #-}
#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 702
{-# LANGUAGE Trustworthy #-}
#endif
-- |Separate module for Typeable declaration, to minimize the amount of
-- visual inspection required to determine that this package is "safe"
--
-- This separation is not necessary with base >= 4.7, so this module will
-- not be compiled at all with GHC >= 7.8.
module Data.Dependent.Sum.Typeable where
import {-# SOURCE #-} Data.Dependent.Sum
import Data.Typeable
instance (Typeable1 t, Typeable1 f) => Typeable (DSum t f) where
typeOf ds = mkTyConApp dSumCon [typeOfF, typeOfT]
where
typeOfF = typeOf1 $ (undefined :: DSum f t -> f a) ds
typeOfT = typeOf1 $ (undefined :: DSum f t -> t a) ds
#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 702
dSumCon = mkTyCon3 "dependent-sum" "Data.Dependent.Sum" "DSum"
#else
dSumCon = mkTyCon "Data.Dependent.Sum.DSum"
#endif