definition:
|
ppConstructor :: Options -> ConstrDecl -> Doc
ppConstructor opts (ConstrDecl id texps) =
hsep (ppIdent opts 0 id : map (ppType opts 0) texps)
ppConstructor opts (ConOpDecl t1 id t2) =
ppType opts 0 t1 <+> ppIdent opts 0 id <+> ppType opts 0 t2
ppConstructor opts (RecordDecl id fields) =
ppIdent opts 0 id <+> ppFields opts fields
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- pretty-print a constructor declaration
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{ConstrDecl}) |-> _ || (_,{ConOpDecl}) |-> _ || (_,{RecordDecl}) |-> _}
|
name:
|
ppConstructor
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Options -> CurryInterface.Types.ConstrDecl -> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|