formatting-7.0.0.2: src/Data/Text/Format/Functions.hs
{-# LANGUAGE MagicHash #-}
-- |
-- Module : Data.Text.Format.Functions
-- Copyright : (c) 2011 MailRank, Inc.
--
-- License : BSD-style
-- Maintainer : bos@serpentine.com
-- Stability : experimental
-- Portability : GHC
--
-- Useful functions and combinators.
module Data.Text.Format.Functions
( (<>)
, i2d
) where
import Data.Text.Lazy.Builder (Builder)
import Prelude hiding ((<>))
import GHC.Base hiding ((<>))
-- | Unsafe conversion for decimal digits.
{-# INLINE i2d #-}
i2d :: Int -> Char
i2d (I# i#) = C# (chr# (ord# '0'# +# i#))
-- | The normal 'mappend' function with right associativity instead of
-- left.
(<>) :: Builder -> Builder -> Builder
(<>) = mappend
{-# INLINE (<>) #-}
infixr 4 <>