definition:
|
ppRule :: ARule _ -> Doc
ppRule (ARule _ vs e)
| null vs = equals <+> ppExp e
| otherwise = hsep (map ppAVarIndex vs) </> equals <+> ppExp e
ppRule (AExternal _ e) = text "external" <+> dquotes (text e)
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- pretty-print a function rule
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({ARule}) |-> _ || ({AExternal}) |-> _}
|
name:
|
ppRule
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
FlatCurry.Annotated.Types.ARule a -> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|