CurryInfo: curry-interface-2.0.1 / CurryInterface.Pretty.ppMethodDecls

definition:
ppMethodDecls :: Options -> [IMethodDecl] -> Doc
ppMethodDecls opts mDecls = case mDecls of
  [] -> lbrace <$$> rbrace
  _  -> lbrace <$$>
        (nest (optIndent opts) . indent (optIndent opts))
           ((vsep . punctuate semi) (map (ppMethodDecl opts) mDecls)) <$$>
        rbrace
demand:
argument 2
deterministic:
deterministic operation
documentation:
--- pretty-print a list of method declarations
failfree:
(_, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,{[]}) |-> _ || (_,{:}) |-> _}
name:
ppMethodDecls
precedence:
no precedence defined
result-values:
_
signature:
Options -> [CurryInterface.Types.IMethodDecl] -> Text.PrettyImpl.Doc
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term