definition:
|
listToSubst :: [(VarIdx, Term f)] -> Subst f
listToSubst = Map.fromList
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Returns a substitution that contains all the mappings from the given list.
--- For multiple mappings with the same variable, the last corresponding
--- mapping of the given list is taken.
|
failfree:
|
()
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> {fromList}}
|
name:
|
listToSubst
|
precedence:
|
no precedence defined
|
result-values:
|
{fromList}
|
signature:
|
[(Prelude.Int, Rewriting.Term.Term a)]
-> Data.Map.Map Prelude.Int (Rewriting.Term.Term a)
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|