MCPcopy Create free account
hub / github.com/YuminosukeSato/ironkernel / sqrt

Method sqrt

src/python/py_kernel.rs:141–143  ·  view source on GitHub ↗
(&self, expr: PyExpr)

Source from the content-addressed store, hash-verified

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)

Callers 5

eval_reduceFunction · 0.45
apply_unaryFunction · 0.45

Calls

no outgoing calls

Tested by 3