(self, other: Expr)
| 188 | return _binary_rhs_helper(other) |
| 189 | |
| 190 | def __mod__(self, other: Expr) -> "ExprWithOp": |
| 191 | return _binary_op_helper(self, other, _op_ffi_api.mod) # type: ignore |
| 192 | |
| 193 | def __rmod__(self, other: Expr) -> "ExprWithOp": |
| 194 | return _binary_rhs_helper(other) |
nothing calls this directly
no test coverage detected