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

definition:
ppContext :: Options -> Context -> Doc
ppContext opts ctx = case ctx of
  []       -> empty
  [constr] -> ppConstraint opts constr <+> text "=>"
  _        -> parens ((hcat . punctuate (text ", "))
                        (map (ppConstraint opts) ctx)) <+> doubleArrow
demand:
argument 2
deterministic:
deterministic operation
documentation:
--- pretty-print a context
failfree:
(_, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,{[]}) |-> {Doc} || (_,{:}) |-> _}
name:
ppContext
precedence:
no precedence defined
result-values:
_
signature:
Options -> [CurryInterface.Types.Constraint] -> Text.PrettyImpl.Doc
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term