Functor: Difference between revisions
mNo edit summary |
m (+cat) |
||
Line 9: | Line 9: | ||
fmap id = id | fmap id = id | ||
fmap (p . q) = (fmap p) . (fmap q) | fmap (p . q) = (fmap p) . (fmap q) | ||
[[Category:Standard classes]] |
Revision as of 04:32, 3 January 2006
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)