definition: |
parseCurryInterface :: String -> Interface parseCurryInterface txt = case parse interface txt of Nothing -> error "Parsing failed" Just i -> i |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- A parser for the text of a Curry interface. |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> _} |
name: |
parseCurryInterface |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
String -> CurryInterface.Types.Interface |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |