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