definition:
|
ppHiddenPragma :: Options -> [Ident] -> Doc
ppHiddenPragma opts pragmas = case pragmas of
[] -> empty
_ -> space <> lpragma <+> text "HIDING" <+>
(hsep . punctuate comma) (map (ppIdent opts 0) pragmas) <+> rpragma
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- pretty-print a hidden pragma
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{[]}) |-> {Doc} || (_,{:}) |-> _}
|
name:
|
ppHiddenPragma
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Options -> [CurryInterface.Types.Ident] -> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|