CurryInfo: base-3.3.0 / Prelude.Read

definition:
class Read a where
  readsPrec :: Int -> ReadS a
  readList :: ReadS [a]

  readList = readListDefault
documentation:
--- The class `Read` contains method to parse strings to return values
--- corresponding to the textual representation as produced by `show`.
methods:
["readsPrec :: Int -> [Char] -> [(a, [Char])]","readList 0 :: [Char] -> [([a], [Char])]"]
name:
Read