{-# LANGUAGE TemplateHaskell #-} {-# OPTIONS_GHC -fno-warn-orphans #-} {-| Module: TextShow.Data.Ord Copyright: (C) 2014-2015 Ryan Scott License: BSD-style (see the file LICENSE) Maintainer: Ryan Scott Stability: Provisional Portability: GHC Monomorphic 'TextShow' functions for 'Ordering' and 'Down'. /Since: 2/ -} module TextShow.Data.Ord ( showbOrdering , showbDownPrecWith ) where import Data.Text.Lazy.Builder (Builder) import GHC.Exts (Down) import TextShow.Classes (showb, showbPrecWith) import TextShow.TH.Internal (deriveTextShow, deriveTextShow1) -- | Convert a 'Ordering' to a 'Builder'. -- -- /Since: 2/ showbOrdering :: Ordering -> Builder showbOrdering = showb {-# INLINE showbOrdering #-} -- | Convert a 'Down' value to a 'Builder' with the given show function and precedence. -- -- /Since: 2/ showbDownPrecWith :: (Int -> a -> Builder) -> Int -> Down a -> Builder showbDownPrecWith = showbPrecWith {-# INLINE showbDownPrecWith #-} $(deriveTextShow ''Ordering) $(deriveTextShow ''Down) $(deriveTextShow1 ''Down)