definition:
|
ppIdent :: Options -> Int -> Ident -> Doc
ppIdent _ p (Ident id) =
parensIf (p >= 1 && isOperator id) (text id)
|
demand:
|
argument 3
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Pretty-print an Ident. If the second argument is non-zero,
--- operators (i.e., strings with special characters) will be
--- enclosed in parentheses.
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,{Ident}) |-> _}
|
name:
|
ppIdent
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Options -> Prelude.Int -> 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
|