CurryInfo: base-3.3.0 / Prelude.Show

definition:
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:
--- The class `Show` contains methods to transform values into
--- a string representation.
methods:
["show 1 :: a -> [Char]","showsPrec 3 :: Int -> a -> [Char] -> [Char]","showList 0 :: [a] -> [Char] -> [Char]"]
name:
Show