Skip to content

Commit

Permalink
Add missing file
Browse files Browse the repository at this point in the history
  • Loading branch information
tibbe committed Aug 30, 2012
1 parent 3829e75 commit 0091ae4
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Data/Csv/Compat/Monoid.hs
@@ -0,0 +1,14 @@
{-# LANGUAGE CPP #-}
module Data.Csv.Compat.Monoid
( (<>)
) where

import Data.Monoid

#if !MIN_VERSION_base(4,5,0)
infixr 6 <>
-- | An infix synonym for 'mappend'.
(<>) :: Monoid m => m -> m -> m
(<>) = mappend
{-# INLINE (<>) #-}
#endif

0 comments on commit 0091ae4

Please sign in to comment.