definition: |
showContext :: DocOptions -> String -> CContext -> String showContext _ _ (CContext []) = "" showContext opts mod (CContext [clscon]) = showConstraint opts mod clscon ++ " =>" showContext opts mod (CContext ctxt@(_:_:_)) = brackets True (intercalate ", " (map (showConstraint opts mod) ctxt)) ++ " =>" |
demand: |
argument 3 |
deterministic: |
deterministic operation |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_,{CContext}) |-> _} |
name: |
showContext |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
CurryDoc.Options.DocOptions -> String -> AbstractCurry.Types.CContext -> String |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |