Functor: Difference between revisions

From HaskellWiki
m (+cat)
m (Adding Monad category)
Line 11: Line 11:


[[Category:Standard classes]]
[[Category:Standard classes]]
[[Category:Monad]]

Revision as of 18:27, 7 October 2006

Functor class (base)
import Control.Monad

The Functor class is defined like this:

class Functor f where
  fmap :: (a -> b) -> f a -> f b

All instances of Functor should obey:

fmap id = id
fmap (p . q) = (fmap p) . (fmap q)