definition:
|
ppCOpDecl :: Options -> COpDecl -> Doc
ppCOpDecl _ (COp qn fix p) =
hsep [ppCFixity fix, int p, genericPPName (bquotesIf . not . isInfixId) qn]
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Pretty-print operator precedence declarations.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{COp}) |-> _}
|
name:
|
ppCOpDecl
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Options -> AbstractCurry.Types.COpDecl -> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|