pandora-0.2.3: A box of patterns and paradigms

Safe HaskellSafe
LanguageHaskell2010

Pandora.Pattern.Category

Documentation

class Category (m :: * -> * -> *) where Source #

Methods

identity :: m a a Source #

(.) :: m b c -> m a b -> m a c infixr 8 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 #