pub trait Pow<RHS> {
type Output;
// Required method
fn pow(self, rhs: RHS) -> Self::Output;
}
Expand description
Complete re-export of num-traits for SciRS2 ecosystem Binary operator for raising a value to a power.
pub trait Pow<RHS> {
type Output;
// Required method
fn pow(self, rhs: RHS) -> Self::Output;
}
Complete re-export of num-traits for SciRS2 ecosystem Binary operator for raising a value to a power.