{-# LANGUAGE CPP, Rank2Types, TypeOperators #-} #if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 706 #define LANGUAGE_PolyKinds {-# LANGUAGE PolyKinds #-} #endif #if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 707 {-# LANGUAGE RoleAnnotations #-} #endif #if defined(__GLASGOW_HASKELL__) && MIN_VERSION_base(4,7,0) #define HAS_DATA_TYPE_EQUALITY 1 {-# LANGUAGE GADTs #-} {-# LANGUAGE ScopedTypeVariables #-} #endif ----------------------------------------------------------------------------- -- | -- Module : Data.Eq.Type -- Copyright : (C) 2011-2014 Edward Kmett -- License : BSD-style (see the file LICENSE) -- -- Maintainer : Edward Kmett -- Stability : provisional -- Portability : rank2 types, type operators, (optional) type families -- -- Leibnizian equality. Injectivity in the presence of type families -- is provided by a generalization of a trick by Oleg Kiselyov posted here: -- -- ---------------------------------------------------------------------------- module Data.Eq.Type ( -- * Leibnizian equality (:=)(..) -- * Equality as an equivalence relation , refl , trans , symm , coerce -- * Lifting equality , lift , lift2, lift2' , lift3, lift3' #ifdef LANGUAGE_TypeFamilies -- * Lowering equality , lower , lower2 , lower3 #endif #ifdef HAS_DATA_TYPE_EQUALITY -- * 'Eq.:~:' equivalence -- | "Data.Type.Equality" GADT definition is equivalent in power , fromLeibniz , toLeibniz -- * 'Co.Coercion' conversion -- | Leibnizian equality can be converted to representational equality , reprLeibniz #endif ) where import Prelude (Maybe(..)) import Control.Category import Data.Semigroupoid import Data.Groupoid #ifdef HAS_DATA_TYPE_EQUALITY import qualified Data.Type.Coercion as Co import qualified Data.Type.Equality as Eq #endif infixl 4 := -- | Leibnizian equality states that two things are equal if you can -- substitute one for the other in all contexts newtype a := b = Refl { subst :: forall c. c a -> c b } #if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 707 type role (:=) nominal nominal #endif -- | Equality is reflexive refl :: a := a refl = Refl id newtype Coerce a = Coerce { uncoerce :: a } -- | If two things are equal you can convert one to the other coerce :: a := b -> a -> b coerce f = uncoerce . subst f . Coerce -- | Equality forms a category instance Category (:=) where id = Refl id bc . ab = subst bc ab instance Semigroupoid (:=) where bc `o` ab = subst bc ab instance Groupoid (:=) where inv = symm -- | Equality is transitive trans :: a := b -> b := c -> a := c trans ab bc = subst bc ab newtype Symm p a b = Symm { unsymm :: p b a } -- | Equality is symmetric symm :: (a := b) -> (b := a) symm a = unsymm (subst a (Symm refl)) newtype Lift f a b = Lift { unlift :: f a := f b } -- | You can lift equality into any type constructor lift :: a := b -> f a := f b lift a = unlift (subst a (Lift refl)) newtype Lift2 f c a b = Lift2 { unlift2 :: f a c := f b c } -- | ... in any position lift2 :: a := b -> f a c := f b c lift2 a = unlift2 (subst a (Lift2 refl)) lift2' :: a := b -> c := d -> f a c := f b d lift2' ab cd = subst (lift2 ab) (lift cd) newtype Lift3 f c d a b = Lift3 { unlift3 :: f a c d := f b c d } lift3 :: a := b -> f a c d := f b c d lift3 a = unlift3 (subst a (Lift3 refl)) lift3' :: a := b -> c := d -> e := f -> g a c e := g b d f lift3' ab cd ef = lift3 ab `subst` lift2 cd `subst` lift ef #ifdef LANGUAGE_TypeFamilies # ifdef LANGUAGE_PolyKinds type family Inj (f :: j -> k) (a :: k) :: j type family Inj2 (f :: i -> j -> k) (a :: k) :: i type family Inj3 (f :: h -> i -> j -> k) (a :: k) :: h # else type family Inj (f :: * -> *) (a :: *) :: * type family Inj2 (f :: * -> * -> *) (a :: *) :: * type family Inj3 (f :: * -> * -> * -> *) (a :: *) :: * # endif type instance Inj f (f a) = a type instance Inj2 f (f a b) = a type instance Inj3 f (f a b c) = a newtype Lower f a b = Lower { unlower :: Inj f a := Inj f b } newtype Lower2 f a b = Lower2 { unlower2 :: Inj2 f a := Inj2 f b } newtype Lower3 f a b = Lower3 { unlower3 :: Inj3 f a := Inj3 f b } -- | Type constructors are injective, so you can lower equality through any -- type constructor ... lower :: forall a b f. f a := f b -> a := b lower eq = unlower (subst eq (Lower refl :: Lower f (f a) (f a))) -- | ... in any position ... lower2 :: forall a b c f. f a c := f b c -> a := b lower2 eq = unlower2 (subst eq (Lower2 refl :: Lower2 f (f a c) (f a c))) -- | ... these definitions are poly-kinded on GHC 7.6 and up. lower3 :: forall a b c d f. f a c d := f b c d -> a := b lower3 eq = unlower3 (subst eq (Lower3 refl :: Lower3 f (f a c d) (f a c d))) #endif #ifdef HAS_DATA_TYPE_EQUALITY fromLeibniz :: a := b -> a Eq.:~: b fromLeibniz a = subst a Eq.Refl toLeibniz :: a Eq.:~: b -> a := b toLeibniz Eq.Refl = refl instance Eq.TestEquality ((:=) a) where testEquality fa fb = Just (fromLeibniz (trans (symm fa) fb)) reprLeibniz :: a := b -> Co.Coercion a b reprLeibniz a = subst a Co.Coercion instance Co.TestCoercion ((:=) a) where testCoercion fa fb = Just (reprLeibniz (trans (symm fa) fb)) #endif