| Copyright | (c) Andy Gill 2001, (c) Oregon Graduate Institute of Science and Technology, 2001 |
|---|---|
| License | BSD-style (see the file libraries/base/LICENSE) |
| Maintainer | libraries@haskell.org |
| Stability | experimental |
| Portability | portable |
| Safe Haskell | Trustworthy |
| Language | Haskell2010 |
Data.Monoid
Description
A class for monoids (types with an associative binary operation that has an identity) with various general-purpose instances.
Synopsis
- class Monoid a where
- (<>) :: Monoid m => m -> m -> m
- newtype Dual a = Dual {
- getDual :: a
- newtype Endo a = Endo {
- appEndo :: a -> a
- newtype All = All {}
- newtype Any = Any {}
- newtype Sum a = Sum {
- getSum :: a
- newtype Product a = Product {
- getProduct :: a
- newtype First a = First {}
- newtype Last a = Last {}
- newtype Alt f a = Alt {
- getAlt :: f a
Monoid typeclass
The class of monoids (types with an associative binary operation that has an identity). Instances should satisfy the following laws:
mappend mempty x = x
mappend x mempty = x
mappend x (mappend y z) = mappend (mappend x y) z
mconcat =
foldrmappend mempty
The method names refer to the monoid of lists under concatenation, but there are many other instances.
Some types can be viewed as a monoid in more than one way,
e.g. both addition and multiplication on numbers.
In such cases we often define newtypes and make those instances
of Monoid , e.g. Sum and Product.
Methods
Identity of mappend
An associative operation
Fold a list using the monoid.
For most types, the default definition for mconcat will be
used, but the function is included in the class definition so
that an optimized version can be provided for specific types.
Instances
Lift a semigroup into Maybe forming a Monoid according to
http://en.wikipedia.org/wiki/Monoid: "Any semigroup S may be
turned into a monoid simply by adjoining an element e not in S
and defining e*e = e and e*s = s = s*e for all s ∈ S." Since
there is no "Semigroup" typeclass providing just mappend , we
use Monoid instead.
Instances
The monoid of endomorphisms under composition.
Instances
Bool wrappers
Boolean monoid under conjunction (&& ).
Instances
Boolean monoid under disjunction (|| ).
Instances
Num wrappers
Monoid under addition.
Instances
Monoid under multiplication.
Instances
Methods
(+) :: Product a -> Product a -> Product a Source
(-) :: Product a -> Product a -> Product a Source
(*) :: Product a -> Product a -> Product a Source
negate :: Product a -> Product a Source
abs :: Product a -> Product a Source
signum :: Product a -> Product a Source
fromInteger :: Integer -> Product a Source
Maybe wrappers
To implement find or findLast on any Foldable:
findLast :: Foldable t => (a -> Bool) -> t a -> Maybe a findLast pred = getLast . foldMap (x -> if pred x then Last (Just x) else Last Nothing)
Much of Data.Map's interface can be implemented with
Data.Map.alter. Some of the rest can be implemented with a new
alterA function and either First or Last :
alterA :: (Applicative f, Ord k) => (Maybe a -> f (Maybe a)) -> k -> Map k a -> f (Map k a) instance Monoid a => Applicative ((,) a) -- from Control.Applicative
insertLookupWithKey :: Ord k => (k -> v -> v -> v) -> k -> v -> Map k v -> (Maybe v, Map k v) insertLookupWithKey combine key value = Arrow.first getFirst . alterA doChange key where doChange Nothing = (First Nothing, Just value) doChange (Just oldValue) = (First (Just oldValue), Just (combine key value oldValue))
Maybe monoid returning the leftmost non-Nothing value.
is isomorphic to First a, but precedes it
historically.Alt Maybe a
Instances
Maybe monoid returning the rightmost non-Nothing value.
is isomorphic to Last a, and thus to
Dual (First a)Dual (Alt Maybe a)
Instances
Alternative wrapper
Monoid under <|> .
Since: 4.8.0.0
Instances
Methods
succ :: Alt k f a -> Alt k f a Source
pred :: Alt k f a -> Alt k f a Source
toEnum :: Int -> Alt k f a Source
fromEnum :: Alt k f a -> Int Source
enumFrom :: Alt k f a -> [Alt k f a] Source
enumFromThen :: Alt k f a -> Alt k f a -> [Alt k f a] Source
enumFromTo :: Alt k f a -> Alt k f a -> [Alt k f a] Source
enumFromThenTo :: Alt k f a -> Alt k f a -> Alt k f a -> [Alt k f a] Source
Methods
(+) :: Alt k f a -> Alt k f a -> Alt k f a Source
(-) :: Alt k f a -> Alt k f a -> Alt k f a Source
(*) :: Alt k f a -> Alt k f a -> Alt k f a Source
negate :: Alt k f a -> Alt k f a Source
abs :: Alt k f a -> Alt k f a Source
signum :: Alt k f a -> Alt k f a Source
fromInteger :: Integer -> Alt k f a Source