Ineq represents an inequality (apartness constraint) X != Y or X != c or c != X.
| 1214 | |
| 1215 | // Ineq represents an inequality (apartness constraint) X != Y or X != c or c != X. |
| 1216 | type Ineq struct { |
| 1217 | Left BaseTerm |
| 1218 | Right BaseTerm |
| 1219 | } |
| 1220 | |
| 1221 | func (e Ineq) isTerm() {} |
| 1222 |
nothing calls this directly
no outgoing calls
no test coverage detected