pandora-0.2.9: A box of patterns and paradigms

Safe HaskellSafe
LanguageHaskell2010

Pandora.Pattern.Category

Documentation

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 #

Instances
Category ((->) :: Type -> Type -> Type) Source # 
Instance details

Defined in Pandora.Pattern.Category

Methods

identity :: a -> a Source #

(.) :: (b -> c) -> (a -> b) -> a -> c Source #

($) :: (a -> b) -> a -> b Source #