(&self, expr: PyExpr)
| 139 | // --- Math functions (unary: inherit temp_args) --- |
| 140 | |
| 141 | fn sqrt(&self, expr: PyExpr) -> PyExpr { |
| 142 | PyExpr::unary_with_temp_args(UnaryOp::Sqrt, &expr.inner, &expr.temp_args) |
| 143 | } |
| 144 | |
| 145 | fn abs(&self, expr: PyExpr) -> PyExpr { |
| 146 | PyExpr::unary_with_temp_args(UnaryOp::Abs, &expr.inner, &expr.temp_args) |
no outgoing calls