CurryInfo: base-3.4.0 / Prelude.reads

definition: Info
 
reads :: Read a => ReadS a
reads = readsPrec 0
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
A parser to read data from a string.
For instance, `reads "42" :: [(Int,String)]` returns `[(42,[])]`, and
`reads "hello" :: [(Int,String)]` returns `[]`.
failfree: Info
 _
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_) |-> _}
name: Info
 reads
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 Read a => [Char] -> [(a, [Char])]
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 yes
totally-defined: Info
 reducible on all ground data terms