ref: ee5071a64e7ddbccfca452a59d67b922f65ae331
dir: /lib/Text/Show.hs/
module Text.Show(module Text.Show) where import Data.Char import Data.Int type ShowS = String -> String class Show a where showsPrec :: Int -> a -> ShowS show :: a -> String showList :: [a] -> ShowS --showChar :: Char -> ShowS --showParen :: Bool -> ShowS -> ShowS --showString :: String -> ShowS --shows :: forall a . Show a => a -> ShowS