definition:
|
ppCRules :: Options -> QName -> [CRule] -> Doc
ppCRules opts qn rs
| null rs = genericPPName parsIfInfix qn <+> text "external"
| otherwise = vcatMap (ppCRule opts qn) rs
|
demand:
|
argument 3
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Pretty-print a list of function rules, concatenated vertically.
--- If there are no rules, an external rule is printed.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
ppCRules
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Options -> (String, String) -> [AbstractCurry.Types.CRule]
-> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|