definition:
|
lookupSubst :: Subst f -> VarIdx -> Maybe (Term f)
lookupSubst = flip Map.lookup
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Returns the term mapped to the given variable in a substitution or
--- `Nothing` if no such mapping exists.
|
failfree:
|
()
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> {flip}}
|
name:
|
lookupSubst
|
precedence:
|
no precedence defined
|
result-values:
|
{flip}
|
signature:
|
Data.Map.Map Prelude.Int (Rewriting.Term.Term a) -> Prelude.Int
-> Prelude.Maybe (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
|