definition: |
readUnqualifiedTerm :: [String] -> String -> a #else readUnqualifiedTerm :: Data a => [String] -> String -> a #endif readUnqualifiedTerm prefixes s = case result of [(term,tail)] -> if all isSpace tail then term else error $ "ReadShowTerm.readUnqualifiedTerm: no parse, " ++ "unmatched string after term: " ++ tail [] -> error "ReadShowTerm.readUnqualifiedTerm: no parse" _ -> error "ReadShowTerm.readUnqualifiedTerm: ambiguous parse" where result = readsUnqualifiedTerm prefixes s |
demand: |
argument 1 |
deterministic: |
deterministic operation |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> _} |
name: |
readUnqualifiedTerm |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
[String] -> String -> a |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
reducible on all ground data terms |