definition:
|
ppCStatement :: Options -> CStatement -> Doc
ppCStatement opts (CSExpr exp ) = ppCExpr opts exp
ppCStatement opts (CSPat pat exp) = ppCPattern opts pat
<+> larrow
<+> ppCExpr opts exp
ppCStatement opts (CSLet lDecls ) = ppLetDecl opts lDecls
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{CSExpr}) |-> _ || (_,{CSPat}) |-> _ || (_,{CSLet}) |-> _}
|
name:
|
ppCStatement
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Options -> AbstractCurry.Types.CStatement -> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|