| 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
newtype WrappedCategory k a b Source #
Constructors
| WrapCategory | |
Fields 
  | |
Instances
| Category k2 => Category (WrappedCategory k2 :: k1 -> k1 -> *) Source # | |
Defined in Data.Semigroupoid 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 # | |
Defined in Data.Semigroupoid Methods o :: WrappedCategory k2 j k -> WrappedCategory k2 i j -> WrappedCategory k2 i k Source #  | |