(self, other: Expr)
| 150 | return _binary_op_helper(self, other, _op_ffi_api.greater_equal) # type: ignore |
| 151 | |
| 152 | def __le__(self, other: Expr) -> "ExprWithOp": |
| 153 | return _binary_op_helper(self, other, _op_ffi_api.less_equal) # type: ignore |
| 154 | |
| 155 | # NOTE: Cannot override __eq__ and __ne__, which will influence object equal |
| 156 |
nothing calls this directly
no test coverage detected