definition:
|
ppInfix :: Options -> Infix -> Doc
ppInfix _ InfixL = text "infixl"
ppInfix _ InfixR = text "infixr"
ppInfix _ Infix = text "infix"
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- pretty-print an infix declaration
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{InfixL}) |-> {Doc} || (_,{InfixR}) |-> {Doc} || (_,{Infix}) |-> {Doc}}
|
name:
|
ppInfix
|
precedence:
|
no precedence defined
|
result-values:
|
{Doc}
|
signature:
|
Options -> CurryInterface.Types.Infix -> Text.PrettyImpl.Doc
|
solution-complete:
|
operationally complete operation
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|