base-compat-0.10.1: A compatibility layer for base

Safe HaskellSafe
LanguageHaskell98

Data.Monoid.Compat

Synopsis

Documentation

(<>) :: Semigroup a => a -> a -> a infixr 6 #

An associative operation.

(a <> b) <> c = a <> (b <> c)

If a is also a Monoid we further require

(<>) = mappend