(self, other: Expr)
| 147 | return _binary_op_helper(self, other, _op_ffi_api.greater) # type: ignore |
| 148 | |
| 149 | def __ge__(self, other: Expr) -> "ExprWithOp": |
| 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 |
nothing calls this directly
no test coverage detected