definition:
|
ppFuncDecl :: Options -> FuncDecl -> Doc
ppFuncDecl o (Func qn _ _ ty r)
= indent o (sep [ppPrefixOp qn, text "::", ppTypeExp o ty])
$$ indent o (ppPrefixOp qn <+> ppRule o r)
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- pretty-print a function declaration
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{Func}) |-> _}
|
name:
|
ppFuncDecl
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Options -> FlatCurry.Types.FuncDecl -> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|