definition:
|
showSubst :: (f -> String) -> Subst f -> String
showSubst s sub = "{" ++ intercalate "," (map showMapping (Map.toList sub)) ++ "}"
where
showMapping (v, t) = showVarIdx v ++ " \x21a6 " ++ showTerm s t
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Transforms a substitution into a string representation.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
showSubst
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
(a -> String) -> Data.Map.Map Prelude.Int (Rewriting.Term.Term a) -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|