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

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