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

Method pow

src/python/py_kernel.rs:191–199  ·  view source on GitHub ↗
(&self, base: PyExpr, exp: PyExpr)

Source from the content-addressed store, hash-verified

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(

Callers 1

Calls

no outgoing calls

Tested by 1