(&self, base: PyExpr, exp: PyExpr)
| 189 | // --- Math functions (binary: merge temp_args) --- |
| 190 | |
| 191 | fn pow(&self, base: PyExpr, exp: PyExpr) -> PyExpr { |
| 192 | PyExpr::binop_with_temp_args( |
| 193 | BinaryOp::Pow, |
| 194 | &base.inner, |
| 195 | &exp.inner, |
| 196 | &base.temp_args, |
| 197 | &exp.temp_args, |
| 198 | ) |
| 199 | } |
| 200 | |
| 201 | fn atan2(&self, y: PyExpr, x: PyExpr) -> PyExpr { |
| 202 | PyExpr::binop_with_temp_args( |
no outgoing calls