definition:
|
showUnificationError :: (f -> String) -> UnificationError f -> String
showUnificationError s (Clash t1 t2) = "Clash: " ++ (showTerm s t1)
++ " is not equal to "
++ (showTerm s t2) ++ "."
showUnificationError s (OccurCheck v t) = "OccurCheck: " ++ (showVarIdx v)
++ " occurs in " ++ (showTerm s t)
++ "."
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Transforms a unification error into a string representation.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{Clash}) |-> _ || (_,{OccurCheck}) |-> _}
|
name:
|
showUnificationError
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
(a -> String) -> UnificationError a -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|