module Text.Show.Text.Data.Tagged (showbTaggedPrecWith) where
import Data.Tagged (Tagged(..))
import Prelude hiding (Show)
import Text.Show.Text (Show(showbPrec), Show1(..), Show2(..), Builder,
showbPrec1, showbUnaryWith)
#include "inline.h"
showbTaggedPrecWith :: (Int -> b -> Builder) -> Int -> Tagged s b -> Builder
showbTaggedPrecWith sp p (Tagged b) = showbUnaryWith sp "Tagged" p b
instance Show b => Show (Tagged s b) where
showbPrec = showbPrec1
INLINE_INST_FUN(showbPrec)
instance Show1 (Tagged s) where
showbPrecWith = showbTaggedPrecWith
INLINE_INST_FUN(showbPrecWith)
instance Show2 Tagged where
showbPrecWith2 _ = showbTaggedPrecWith
INLINE_INST_FUN(showbPrecWith2)