definition:
|
ppFunDeps :: Options -> [FunDep] -> Doc
ppFunDeps opts fdeps
| null fdeps = empty
| otherwise = text "|" <+> sep (punctuate comma (map (ppFunDep opts) fdeps))
where
ppFunDep :: Options -> FunDep -> Doc
ppFunDep opts' (FunDep lhs rhs) =
sep (map (ppIdent opts' 0) lhs) <+> rarrow <+>
sep (map (ppIdent opts' 0) rhs)
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
-- pretty-print the functional dependencies of a class declaration
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
ppFunDeps
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Options -> [CurryInterface.Types.FunDep] -> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|