X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=Text%2FShow.hs;h=d540a1d077c84818c834e420306f6bedc2606789;hb=ac0439db2ece671089cec9ade21754c3ad22c134;hp=dc4535ebfbcdd77a8a8ca1af0a4692f757941789;hpb=aaf764b3ad8b1816d68b5f27299eac125f08e1a5;p=ghc-base.git diff --git a/Text/Show.hs b/Text/Show.hs index dc4535e..d540a1d 100644 --- a/Text/Show.hs +++ b/Text/Show.hs @@ -1,4 +1,4 @@ -{-# OPTIONS_GHC -fno-implicit-prelude #-} +{-# OPTIONS_GHC -XNoImplicitPrelude #-} ----------------------------------------------------------------------------- -- | -- Module : Text.Show @@ -15,26 +15,26 @@ ----------------------------------------------------------------------------- module Text.Show ( - ShowS, -- String -> String + ShowS, -- String -> String Show( - showsPrec, -- :: Int -> a -> ShowS - show, -- :: a -> String - showList -- :: [a] -> ShowS + showsPrec, -- :: Int -> a -> ShowS + show, -- :: a -> String + showList -- :: [a] -> ShowS ), - shows, -- :: (Show a) => a -> ShowS - showChar, -- :: Char -> ShowS - showString, -- :: String -> ShowS - showParen, -- :: Bool -> ShowS -> ShowS - showListWith, -- :: (a -> ShowS) -> [a] -> ShowS + shows, -- :: (Show a) => a -> ShowS + showChar, -- :: Char -> ShowS + showString, -- :: String -> ShowS + showParen, -- :: Bool -> ShowS -> ShowS + showListWith, -- :: (a -> ShowS) -> [a] -> ShowS ) where #ifdef __GLASGOW_HASKELL__ import GHC.Show -#endif +#endif -- | Show a list (using square brackets and commas), given a function -- for showing elements. -showListWith :: (a -> ShowS) -> [a] -> ShowS +showListWith :: (a -> ShowS) -> [a] -> ShowS showListWith = showList__ #ifndef __GLASGOW_HASKELL__