definition:
|
ppFuncBody :: IFuncBody -> Doc
ppFuncBody (IExternal name) = text ("external \"" ++ name ++ "\",")
ppFuncBody (IFuncBody block) = ppBlock block
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Pretty print an ICurry function's body
--- @param body the function's body
--- @return the pretty printed function body
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({IExternal}) |-> {Doc} || ({IFuncBody}) |-> {Doc}}
|
name:
|
ppFuncBody
|
precedence:
|
no precedence defined
|
result-values:
|
{Doc}
|
signature:
|
ICurry.Types.IFuncBody -> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|