definition:
|
addEqShowContext :: CTVarIName -> CContext -> CContext
addEqShowContext tvar (CContext clscons) =
CContext (nub (clscons ++ map (\c -> (pre c, [CTVar tvar])) ["Eq","Show"]))
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Adds `Eq` and `Show` class contexts for the given type variable.
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
name:
|
addEqShowContext
|
precedence:
|
no precedence defined
|
result-values:
|
{CContext}
|
signature:
|
(Prelude.Int, String) -> AbstractCurry.Types.CContext
-> AbstractCurry.Types.CContext
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|