base-compat-0.2.0: src/Data/Monoid.hs
module Data.Monoid (
module Base
, (<>)
) where
import "base" Data.Monoid as Base
#if !MIN_VERSION_base(4,5,0)
-- | An infix synonym for 'mappend'.
(<>) :: Monoid m => m -> m -> m
(<>) = mappend
{-# INLINE (<>) #-}
#endif