Difference between revisions of "Monoid"

From HaskellWiki
Jump to navigation Jump to search
(Added some links)
(Added another link)
Line 4: Line 4:
   
 
== See also ==
 
== See also ==
  +
* An introduction: [http://sigfpe.blogspot.com/2009/01/haskell-monoids-and-their-uses.html Haskell Monoids and their Uses]:
 
* [http://www.haskell.org/ghc/docs/latest/html/libraries/base/Data-Monoid.html The Data.Monoid module]
 
* [http://www.haskell.org/ghc/docs/latest/html/libraries/base/Data-Monoid.html The Data.Monoid module]
 
* The blog article [http://apfelmus.nfshost.com/monoid-fingertree.html Monoids and Finger Trees]
 
* The blog article [http://apfelmus.nfshost.com/monoid-fingertree.html Monoids and Finger Trees]

Revision as of 14:43, 21 January 2009

This article is a stub. You can help by expanding it.

A monoid is an algebraic structure with a single, associative binary operation and an identity element.

See also