eq-3.0: Leibnizian equality

Copyright(C) 2011 Edward Kmett
LicenseBSD-style (see the file LICENSE)
MaintainerEdward Kmett <ekmett@gmail.com>
Stabilityprovisional
Portabilityrank2 types, type operators, (optional) type families
Safe HaskellSafe-Inferred
LanguageHaskell98

Data.Eq.Type

Contents

Description

Leibnizian equality. Injectivity in the presence of type families is provided by a generalization of a trick by Oleg Kiselyv posted here:

http://www.haskell.org/pipermail/haskell-cafe/2010-May/077177.html

Synopsis

Leibnizian equality

data a := b infixl 4 Source

Leibnizian equality states that two things are equal if you can substite one for the other in all contexts

Constructors

Refl 

Fields

subst :: forall c. c a -> c b
 

Instances

Groupoid (:=) 
Semigroupoid (:=) 
Category * (:=)

Equality forms a category

Equality as an equivalence relation

refl :: a := a Source

Equality is reflexive

trans :: (a := b) -> (b := c) -> a := c Source

Equality is transitive

symm :: (a := b) -> b := a Source

Equality is symmetric

coerce :: (a := b) -> a -> b Source

If two things are equal you can convert one to the other

Lifting equality

lift :: (a := b) -> f a := f b Source

You can lift equality into any type constructor

lift2 :: (a := b) -> f a c := f b c Source

... in any position

lift2' :: (a := b) -> (c := d) -> f a c := f b d Source

lift3 :: (a := b) -> f a c d := f b c d Source

lift3' :: (a := b) -> (c := d) -> (e := f) -> g a c e := g b d f Source

Lowering equality

lower :: (f a := f b) -> a := b Source

Type constructors are injective, so you can lower equality through any type constructor

lower2 :: (f a c := f b c) -> a := b Source

... in any position

lower3 :: (f a c d := f b c d) -> a := b Source