License | BSD-style (see the file LICENSE) |
---|---|
Maintainer | sjoerd@w3future.com |
Stability | experimental |
Portability | non-portable |
Safe Haskell | None |
Language | Haskell2010 |
Synopsis
- type (:~>) f g = forall c d. (c ~ Dom f, c ~ Dom g, d ~ Cod f, d ~ Cod g) => Nat c d f g
- type Component f g z = Cod f (f :% z) (g :% z)
- (!) :: (Category c, Category d) => Nat c d f g -> c a b -> d (f :% a) (g :% b)
- o :: (Category c, Category d, Category e) => Nat d e j k -> Nat c d f g -> Nat c e (j :.: f) (k :.: g)
- natId :: Functor f => f -> Nat (Dom f) (Cod f) f f
- srcF :: Nat c d f g -> f
- tgtF :: Nat c d f g -> g
- data Nat :: (* -> * -> *) -> (* -> * -> *) -> * -> * -> * where
- type Endo k = Nat k k
- type Presheaves k = Nat (Op k) (->)
- type Profunctors c d = Nat (Op d :**: c) (->)
- compAssoc :: (Functor f, Functor g, Functor h, Dom f ~ Cod g, Dom g ~ Cod h) => f -> g -> h -> Nat (Dom h) (Cod f) ((f :.: g) :.: h) (f :.: (g :.: h))
- compAssocInv :: (Functor f, Functor g, Functor h, Dom f ~ Cod g, Dom g ~ Cod h) => f -> g -> h -> Nat (Dom h) (Cod f) (f :.: (g :.: h)) ((f :.: g) :.: h)
- idPrecomp :: Functor f => f -> Nat (Dom f) (Cod f) (f :.: Id (Dom f)) f
- idPrecompInv :: Functor f => f -> Nat (Dom f) (Cod f) f (f :.: Id (Dom f))
- idPostcomp :: Functor f => f -> Nat (Dom f) (Cod f) (Id (Cod f) :.: f) f
- idPostcompInv :: Functor f => f -> Nat (Dom f) (Cod f) f (Id (Cod f) :.: f)
- constPrecompIn :: Nat j d (f :.: Const j c x) g -> Nat j d (Const j d (f :% x)) g
- constPrecompOut :: Nat j d f (g :.: Const j c x) -> Nat j d f (Const j d (g :% x))
- constPostcompIn :: Nat j d (Const k d x :.: f) g -> Nat j d (Const j d x) g
- constPostcompOut :: Nat j d f (Const k d x :.: g) -> Nat j d f (Const j d x)
- data FunctorCompose (c :: * -> * -> *) (d :: * -> * -> *) (e :: * -> * -> *) = FunctorCompose
- type EndoFunctorCompose k = FunctorCompose k k k
- type Precompose f e = FunctorCompose (Dom f) (Cod f) e :.: Tuple2 (Nat (Cod f) e) (Nat (Dom f) (Cod f)) f
- pattern Precompose :: (Category e, Functor f) => f -> Precompose f e
- type Postcompose f c = FunctorCompose c (Dom f) (Cod f) :.: Tuple1 (Nat (Dom f) (Cod f)) (Nat c (Dom f)) f
- pattern Postcompose :: (Category e, Functor f) => f -> Postcompose f e
- data Wrap f h = Wrap f h
- data Apply (c1 :: * -> * -> *) (c2 :: * -> * -> *) = Apply
- data Tuple (c1 :: * -> * -> *) (c2 :: * -> * -> *) = Tuple
Natural transformations
type (:~>) f g = forall c d. (c ~ Dom f, c ~ Dom g, d ~ Cod f, d ~ Cod g) => Nat c d f g Source #
f :~> g
is a natural transformation from functor f to functor g.
type Component f g z = Cod f (f :% z) (g :% z) Source #
A component for an object z
is an arrow from F z
to G z
.
(!) :: (Category c, Category d) => Nat c d f g -> c a b -> d (f :% a) (g :% b) infixl 9 Source #
'n ! a' returns the component for the object a
of a natural transformation n
.
This can be generalized to any arrow (instead of just identity arrows).
o :: (Category c, Category d, Category e) => Nat d e j k -> Nat c d f g -> Nat c e (j :.: f) (k :.: g) Source #
Horizontal composition of natural transformations.
natId :: Functor f => f -> Nat (Dom f) (Cod f) f f Source #
The identity natural transformation of a functor.
Functor category
data Nat :: (* -> * -> *) -> (* -> * -> *) -> * -> * -> * where Source #
Natural transformations are built up of components,
one for each object z
in the domain category of f
and g
.
Nat :: (Functor f, Functor g, c ~ Dom f, c ~ Dom g, d ~ Cod f, d ~ Cod g) => f -> g -> (forall z. Obj c z -> Component f g z) -> Nat c d f g |
Instances
Category k => CartesianClosed (Presheaves k :: Type -> Type -> Type) Source # | The category of presheaves on a category |
Defined in Data.Category.CartesianClosed type Exponential (Presheaves k) y z :: Kind k Source # apply :: Obj (Presheaves k) y -> Obj (Presheaves k) z -> Presheaves k (BinaryProduct (Presheaves k) (Exponential (Presheaves k) y z) y) z Source # tuple :: Obj (Presheaves k) y -> Obj (Presheaves k) z -> Presheaves k z (Exponential (Presheaves k) y (BinaryProduct (Presheaves k) z y)) Source # (^^^) :: Presheaves k z1 z2 -> Presheaves k y2 y1 -> Presheaves k (Exponential (Presheaves k) y1 z1) (Exponential (Presheaves k) y2 z2) Source # | |
Category d => Category (Nat c d :: Type -> Type -> Type) Source # | Functor category D^C. Objects of D^C are functors from C to D. Arrows of D^C are natural transformations. |
(Category c, HasBinaryCoproducts d) => HasBinaryCoproducts (Nat c d :: Type -> Type -> Type) Source # | The functor coproduct |
Defined in Data.Category.Limit type BinaryCoproduct (Nat c d) x y :: Kind k Source # inj1 :: Obj (Nat c d) x -> Obj (Nat c d) y -> Nat c d x (BinaryCoproduct (Nat c d) x y) Source # inj2 :: Obj (Nat c d) x -> Obj (Nat c d) y -> Nat c d y (BinaryCoproduct (Nat c d) x y) Source # (|||) :: Nat c d x a -> Nat c d y a -> Nat c d (BinaryCoproduct (Nat c d) x y) a Source # (+++) :: Nat c d a1 b1 -> Nat c d a2 b2 -> Nat c d (BinaryCoproduct (Nat c d) a1 a2) (BinaryCoproduct (Nat c d) b1 b2) Source # | |
(Category c, HasBinaryProducts d) => HasBinaryProducts (Nat c d :: Type -> Type -> Type) Source # | The functor product |
Defined in Data.Category.Limit type BinaryProduct (Nat c d) x y :: Kind k Source # proj1 :: Obj (Nat c d) x -> Obj (Nat c d) y -> Nat c d (BinaryProduct (Nat c d) x y) x Source # proj2 :: Obj (Nat c d) x -> Obj (Nat c d) y -> Nat c d (BinaryProduct (Nat c d) x y) y Source # (&&&) :: Nat c d a x -> Nat c d a y -> Nat c d a (BinaryProduct (Nat c d) x y) Source # (***) :: Nat c d a1 b1 -> Nat c d a2 b2 -> Nat c d (BinaryProduct (Nat c d) a1 a2) (BinaryProduct (Nat c d) b1 b2) Source # | |
(Category c, HasInitialObject d) => HasInitialObject (Nat c d :: Type -> Type -> Type) Source # | The constant functor to the initial object is itself the initial object in its functor category. |
Defined in Data.Category.Limit type InitialObject (Nat c d) :: Kind k Source # initialObject :: Obj (Nat c d) (InitialObject (Nat c d)) Source # initialize :: Obj (Nat c d) a -> Nat c d (InitialObject (Nat c d)) a Source # | |
(Category c, HasTerminalObject d) => HasTerminalObject (Nat c d :: Type -> Type -> Type) Source # | The constant functor to the terminal object is itself the terminal object in its functor category. |
Defined in Data.Category.Limit type TerminalObject (Nat c d) :: Kind k Source # terminalObject :: Obj (Nat c d) (TerminalObject (Nat c d)) Source # terminate :: Obj (Nat c d) a -> Nat c d a (TerminalObject (Nat c d)) Source # | |
type Exponential (Presheaves k :: Type -> Type -> Type) (y :: Kind (Nat (Op k) ((->) :: Type -> Type -> Type))) (z :: Kind (Nat (Op k) ((->) :: Type -> Type -> Type))) Source # | |
Defined in Data.Category.CartesianClosed type Exponential (Presheaves k :: Type -> Type -> Type) (y :: Kind (Nat (Op k) ((->) :: Type -> Type -> Type))) (z :: Kind (Nat (Op k) ((->) :: Type -> Type -> Type))) = PShExponential k y z | |
type InitialObject (Nat c d :: Type -> Type -> Type) Source # | |
Defined in Data.Category.Limit | |
type TerminalObject (Nat c d :: Type -> Type -> Type) Source # | |
Defined in Data.Category.Limit | |
type BinaryCoproduct (Nat c d :: Type -> Type -> Type) (x :: Kind (Nat c d)) (y :: Kind (Nat c d)) Source # | |
Defined in Data.Category.Limit | |
type BinaryProduct (Nat c d :: Type -> Type -> Type) (x :: Kind (Nat c d)) (y :: Kind (Nat c d)) Source # | |
Defined in Data.Category.Limit |
type Presheaves k = Nat (Op k) (->) Source #
Functor isomorphisms
compAssoc :: (Functor f, Functor g, Functor h, Dom f ~ Cod g, Dom g ~ Cod h) => f -> g -> h -> Nat (Dom h) (Cod f) ((f :.: g) :.: h) (f :.: (g :.: h)) Source #
compAssocInv :: (Functor f, Functor g, Functor h, Dom f ~ Cod g, Dom g ~ Cod h) => f -> g -> h -> Nat (Dom h) (Cod f) (f :.: (g :.: h)) ((f :.: g) :.: h) Source #
Related functors
data FunctorCompose (c :: * -> * -> *) (d :: * -> * -> *) (e :: * -> * -> *) Source #
Instances
type EndoFunctorCompose k = FunctorCompose k k k Source #
Composition of endofunctors is a functor.
type Precompose f e = FunctorCompose (Dom f) (Cod f) e :.: Tuple2 (Nat (Cod f) e) (Nat (Dom f) (Cod f)) f Source #
Precompose f e
is the functor such that Precompose f e :% g = g :.: f
,
for functors g
that compose with f
and with codomain e
.
pattern Precompose :: (Category e, Functor f) => f -> Precompose f e Source #
type Postcompose f c = FunctorCompose c (Dom f) (Cod f) :.: Tuple1 (Nat (Dom f) (Cod f)) (Nat c (Dom f)) f Source #
Postcompose f c
is the functor such that Postcompose f c :% g = f :.: g
,
for functors g
that compose with f
and with domain c
.
pattern Postcompose :: (Category e, Functor f) => f -> Postcompose f e Source #
Wrap f h |
Instances
(Functor f, Functor h) => Functor (Wrap f h) Source # |
|
type Dom (Wrap f h) Source # | |
type Cod (Wrap f h) Source # | |
type (Wrap f h) :% g Source # | |
Defined in Data.Category.NaturalTransformation |
data Apply (c1 :: * -> * -> *) (c2 :: * -> * -> *) Source #
Instances
(Category c1, Category c2) => Functor (Apply c1 c2) Source # |
|
type Dom (Apply c1 c2) Source # | |
Defined in Data.Category.NaturalTransformation | |
type Cod (Apply c1 c2) Source # | |
Defined in Data.Category.NaturalTransformation | |
type (Apply c1 c2) :% (f, a) Source # | |
Defined in Data.Category.NaturalTransformation |
data Tuple (c1 :: * -> * -> *) (c2 :: * -> * -> *) Source #
Instances
(Category c1, Category c2) => Functor (Tuple c1 c2) Source # | |
type Dom (Tuple c1 c2) Source # | |
Defined in Data.Category.NaturalTransformation | |
type Cod (Tuple c1 c2) Source # | |
Defined in Data.Category.NaturalTransformation | |
type (Tuple c1 c2) :% a Source # | |
Defined in Data.Category.NaturalTransformation |