definition:
|
addShowContext :: CContext -> CContext
addShowContext (CContext clscons) =
CContext (nub (clscons ++ (map (\t -> (pre "Show",t)) (map snd clscons))))
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Adds a "Show" class context to all types occurring in the context.
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
name:
|
addShowContext
|
precedence:
|
no precedence defined
|
result-values:
|
{CContext}
|
signature:
|
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
|