definition: |
mainCallError :: [String] -> _ mainCallError args = error $ unlines [ "Illegal arguments: " ++ unwords args , "" , "Usage: curry-ndopt [-d <k>] [-max] [-fix|-wlist] [-call] <module_name>" , "" , "Options:" , "<k> : term depth (default: 1)" , "-max : compute only maximal abstract elements in fixpoints" , "-fix : use simple fixpoint iteration" , "-wlist: use working list fixpoint computation (default)" , "-call : compute only call patterns (and do not transform program)" ] |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> _} |
name: |
mainCallError |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
[String] -> a |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
possibly non-reducible on same data term |