Pandora.Pattern.Category
class Category (m :: * -> * -> *) where Source #
Minimal complete definition
identity, (.)
Methods
identity :: m a a Source #
(.) :: m b c -> m a b -> m a c infixr 8 Source #
($) :: m a b -> m a b infixr 0 Source #
Defined in Pandora.Pattern.Category
identity :: a -> a Source #
(.) :: (b -> c) -> (a -> b) -> a -> c Source #
($) :: (a -> b) -> a -> b Source #