base-4.0.0.0: Basic librariesContentsIndex
Control.Category
Portabilityportable
Stabilityexperimental
Maintainerashley@semantic.org
Description
Synopsis
class Category cat where
id :: cat a a
(.) :: cat b c -> cat a b -> cat a c
(<<<) :: Category cat => cat b c -> cat a b -> cat a c
(>>>) :: Category cat => cat a b -> cat b c -> cat a c
Documentation
class Category cat where
A class for categories. id and (.) must form a monoid.
Methods
id :: cat a a
the identity morphism
(.) :: cat b c -> cat a b -> cat a c
morphism composition
show/hide Instances
(<<<) :: Category cat => cat b c -> cat a b -> cat a c
Right-to-left composition
(>>>) :: Category cat => cat a b -> cat b c -> cat a c
Left-to-right composition
Produced by Haddock version 2.3.0