CurryInfo: base-3.4.0 / Prelude.read

definition: Info
 
read :: Read a => String -> a
read s =  case [x | (x, t) <- reads s, ("", "") <- lex t] of
  [x] -> x
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
Reads data of the given type from a string.
The operations fails if the data cannot be parsed.
For instance `read "42" :: Int` evaluates to `42`,
and `read "hello" :: Int` fails.
failfree: Info
 <FAILING>
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_) |-> _}
name: Info
 read
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 Read a => [Char] -> a
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 possibly non-reducible on same data term