definition:
|
ppField :: Options -> FieldDecl -> Doc
ppField opts (FieldDecl ids t) =
(hcat . punctuate dot) (map (ppIdent opts 0) ids) <+>
doubleColon <+> ppType opts 0 t
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- pretty-print a field declaration
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{FieldDecl}) |-> _}
|
name:
|
ppField
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Options -> CurryInterface.Types.FieldDecl -> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|