(self, other: Expr)
| 164 | return self.__add__(other) |
| 165 | |
| 166 | def __sub__(self, other: Expr) -> "ExprWithOp": |
| 167 | return _binary_op_helper(self, other, _op_ffi_api.subtract) # type: ignore |
| 168 | |
| 169 | def __rsub__(self, other: Expr) -> "ExprWithOp": |
| 170 | return _binary_rhs_helper(other) |
nothing calls this directly
no test coverage detected