Copyright | (C) 2007-2015 Edward Kmett |
---|---|
License | BSD-style (see the file LICENSE) |
Maintainer | Edward Kmett <ekmett@gmail.com> |
Stability | provisional |
Portability | portable |
Safe Haskell | None |
Language | Haskell98 |
Data.Semigroupoid
Description
A semigroupoid satisfies all of the requirements to be a Category except for the existence of identity arrows.
Synopsis
- class Semigroupoid c where
- newtype WrappedCategory k a b = WrapCategory {
- unwrapCategory :: k a b
- newtype Semi m a b = Semi {
- getSemi :: m
Documentation
class Semigroupoid c where Source #
Minimal complete definition
Instances
Semigroupoid ((:~:) :: k -> k -> *) Source # | |
Semigroupoid (Coercion :: k -> k -> *) Source # | |
Semigroupoid ((:~~:) :: k -> k -> *) Source # | |
Semigroupoid k2 => Semigroupoid (Iso k2 :: k1 -> k1 -> *) Source # | |
Category k2 => Semigroupoid (WrappedCategory k2 :: k1 -> k1 -> *) Source # | |
Methods o :: WrappedCategory k2 j k -> WrappedCategory k2 i j -> WrappedCategory k2 i k Source # | |
Semigroup m => Semigroupoid (Semi m :: k -> k -> *) Source # | |
Semigroupoid k2 => Semigroupoid (Dual k2 :: k1 -> k1 -> *) Source # | |
Semigroupoid (,) Source # | http://en.wikipedia.org/wiki/Band_(mathematics)#Rectangular_bands |
Semigroupoid Op Source # | |
Bind m => Semigroupoid (Kleisli m :: * -> * -> *) Source # | |
Semigroupoid (Const :: * -> * -> *) Source # | |
Extend w => Semigroupoid (Cokleisli w :: * -> * -> *) Source # | |
Semigroupoid (Tagged :: * -> * -> *) Source # | |
Apply f => Semigroupoid (Static f :: * -> * -> *) Source # | |
Semigroupoid ((->) :: * -> * -> *) Source # | |
newtype WrappedCategory k a b Source #
Constructors
WrapCategory | |
Fields
|
Instances
Category k2 => Category (WrappedCategory k2 :: k1 -> k1 -> *) Source # | |
Methods id :: WrappedCategory k2 a a # (.) :: WrappedCategory k2 b c -> WrappedCategory k2 a b -> WrappedCategory k2 a c # | |
Category k2 => Semigroupoid (WrappedCategory k2 :: k1 -> k1 -> *) Source # | |
Methods o :: WrappedCategory k2 j k -> WrappedCategory k2 i j -> WrappedCategory k2 i k Source # |