definition:
|
ppFields :: Options -> [FieldDecl] -> Doc
ppFields opts fields =
lbrace <+>
((hcat . punctuate (text ", ")) (map (ppField opts) fields)) <+>
rbrace
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- pretty-print a list of field declarations
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
ppFields
|
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
|