(self, other: Expr)
| 141 | return _op_ffi_api.negative(self) # type: ignore |
| 142 | |
| 143 | def __lt__(self, other: Expr) -> "ExprWithOp": |
| 144 | return _binary_op_helper(self, other, _op_ffi_api.less) # type: ignore |
| 145 | |
| 146 | def __gt__(self, other: Expr) -> "ExprWithOp": |
| 147 | return _binary_op_helper(self, other, _op_ffi_api.greater) # type: ignore |
nothing calls this directly
no test coverage detected