definition: |
getFunctionInfo :: [(QName,a)] -> QName -> a getFunctionInfo [] n = error ("No analysis result for function "++show n) getFunctionInfo ((fn,fi):fnis) n = if fn == n then fi else getFunctionInfo fnis n |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
Translate a standard analysis result into functional form: |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({:},_) |-> _} |
name: |
getFunctionInfo |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
[((String, String), a)] -> (String, String) -> a |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |