definition:
|
ppInterface :: Options -> Interface -> Doc
ppInterface options (Interface mident decls1 decls2) =
text "interface" <+> ppModuleIdent options mident <+> text "where" <+>
lbrace <> linebreak <>
((vsep . punctuate semi) (pdecls1 ++ pdecls2)) <$$> rbrace
where
pdecls1 = filter (not . isEmpty) (map (ppImportDecl options) decls1)
pdecls2 = filter (not . isEmpty) (map (ppDecl options) decls2)
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- pretty-print a Curry interface
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{Interface}) |-> _}
|
name:
|
ppInterface
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Options -> CurryInterface.Types.Interface -> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|