CurryInfo: base-3.4.0 / Prelude.Read

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

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