definition:
|
ppMethodDecl :: Options -> IMethodDecl -> Doc
ppMethodDecl opts (IMethodDecl id mari qualTExp) =
nest (optIndent opts) $ fillSep
[ ppIdent opts 1 id
, if optWithArity opts then ppMaybe (ppArity opts) mari else empty
, doubleColon, ppQualType opts qualTExp]
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- pretty-print a method declaration
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{IMethodDecl}) |-> _}
|
name:
|
ppMethodDecl
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Options -> CurryInterface.Types.IMethodDecl -> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|