ApplySubstBase simply returns this constant, for any substitution.
(s Subst)
| 1185 | |
| 1186 | // ApplySubstBase simply returns this constant, for any substitution. |
| 1187 | func (a ApplyFn) ApplySubstBase(s Subst) BaseTerm { |
| 1188 | return a.ApplySubst(s).(BaseTerm) |
| 1189 | } |
| 1190 | |
| 1191 | // Eq represents an equality (identity constraint) X = Y or X = c or c = X. |
| 1192 | type Eq struct { |
nothing calls this directly
no test coverage detected