definition:
|
extendSubst :: Subst f -> VarIdx -> Term f -> Subst f
extendSubst m v t = Map.insert v t m
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Extends a substitution with a new mapping from the given variable to the
--- given term. An already existing mapping with the same variable will be
--- thrown away.
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> {Bin}}
|
name:
|
extendSubst
|
precedence:
|
no precedence defined
|
result-values:
|
{Bin}
|
signature:
|
Data.Map.Map Prelude.Int (Rewriting.Term.Term a) -> 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
|