(self, other: Expr)
| 194 | return _binary_rhs_helper(other) |
| 195 | |
| 196 | def __pow__(self, other: Expr) -> "ExprWithOp": |
| 197 | return _binary_op_helper(self, other, _op_ffi_api.power) # type: ignore |
| 198 | |
| 199 | def __rpow__(self, other: Expr) -> "ExprWithOp": |
| 200 | return _binary_rhs_helper(other) |
nothing calls this directly
no test coverage detected