definition:
|
ppWithOptionalKind :: Options -> QualIdent -> Maybe KindExpr -> Doc
ppWithOptionalKind opts qualId Nothing = ppQualIdent opts 0 qualId
ppWithOptionalKind opts qualId (Just k)
| optWithKinds opts
= parens (ppQualIdent opts 0 qualId <+> doubleColon <+> ppKindExpr opts 0 k)
| otherwise
= ppQualIdent opts 0 qualId
|
demand:
|
argument 3
|
deterministic:
|
deterministic operation
|
documentation:
|
--- pretty-print a QualIdent with an optional kind expression
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,{Nothing}) |-> _ || (_,_,{Just}) |-> _}
|
name:
|
ppWithOptionalKind
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Options -> CurryInterface.Types.QualIdent
-> Prelude.Maybe CurryInterface.Types.KindExpr -> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|