CurryInfo: base-3.4.0 / Prelude.Show

definition: Info
 
class Show a where
  show :: a -> String
  showsPrec :: Int -> a -> ShowS
  showList :: [a] -> ShowS

  show x = shows x ""
  showsPrec _ x s = show x ++ s
  showList = showListDefault
documentation: Info
 
The class `Show` contains methods to transform values into
a string representation.
methods: Info
 ["show 1 :: a -> [Char]","showsPrec 3 :: Int -> a -> [Char] -> [Char]","showList 0 :: [a] -> [Char] -> [Char]"]
name: Info
 Show