definition:
|
showCProg :: CurryProg -> String
showCProg = prettyCurryProg defaultOptions
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Shows a pretty formatted version of an abstract Curry Program.
--- The options for pretty-printing are the 'defaultOptions' (and therefore the
--- restrictions mentioned there apply here too).
--- @param prog - a curry prog
--- @return a string, which represents the input program `prog`
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> {prettyCurryProg}}
|
name:
|
showCProg
|
precedence:
|
no precedence defined
|
result-values:
|
{prettyCurryProg}
|
signature:
|
AbstractCurry.Types.CurryProg -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|