definition:
|
ppQualIdent :: Options -> Int -> QualIdent -> Doc
ppQualIdent opts p (QualIdent Nothing id) = ppIdent opts p id
ppQualIdent opts p (QualIdent (Just mident) id)
| optQualify opts = ppModuleIdent opts mident <> dot <> ppIdent opts p id
| otherwise = ppIdent opts p id
|
demand:
|
argument 3
|
deterministic:
|
deterministic operation
|
documentation:
|
--- pretty-print a QualIdent
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,{QualIdent}) |-> _}
|
name:
|
ppQualIdent
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Options -> Prelude.Int -> CurryInterface.Types.QualIdent -> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|