Returns the term the given variable maps to, or nil if the variable is not in domain.
(Variable)
| 152 | type Subst interface { |
| 153 | // Returns the term the given variable maps to, or nil if the variable is not in domain. |
| 154 | Get(Variable) BaseTerm |
| 155 | } |
| 156 | |
| 157 | // SubstMap is a substitution backed by a map from variables to constants. |
no outgoing calls