Eq represents an equality (identity constraint) X = Y or X = c or c = X.
| 1190 | |
| 1191 | // Eq represents an equality (identity constraint) X = Y or X = c or c = X. |
| 1192 | type Eq struct { |
| 1193 | Left BaseTerm |
| 1194 | Right BaseTerm |
| 1195 | } |
| 1196 | |
| 1197 | func (e Eq) isTerm() {} |
| 1198 |
nothing calls this directly
no outgoing calls
no test coverage detected