|
definition: |
translate :: String -> LangParser
translate kind | kind == "html" = translateHTML
| kind == "xml" = translateXML
| otherwise = error "translate: unknown kind"
|
|
demand: |
argument 1 |
|
deterministic: |
deterministic operation |
|
failfree: |
<FAILING> |
|
indeterministic: |
referentially transparent operation |
|
infix: |
no fixity defined |
|
iotype: |
{(_) |-> {translateHTML,translateXML}}
|
|
name: |
translate |
|
precedence: |
no precedence defined |
|
result-values: |
{translateHTML,translateXML}
|
|
signature: |
String -> CPP.ICode.ParsePos.Pos -> String -> Prelude.IO (CPP.ICode.ParseMonad.PM String) |
|
solution-complete: |
operation might suspend on free variables |
|
terminating: |
possibly non-terminating |
|
totally-defined: |
possibly non-reducible on same data term |