Difference between revisions of "Functor"

From HaskellWiki
Jump to navigation Jump to search
 
Line 1: Line 1:
  +
{{Standard class|Functor|module=Control.Monad}}
 
The '''Functor''' class is defined like this:
 
The '''Functor''' class is defined like this:
   

Revision as of 03:09, 2 January 2006

Functor class ([[{{{package}}} package|{{{package}}}]])
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)