Pow
A trait for calculating a base to the power of an exponent.
Fully qualified path: core::num::traits::ops::pow::Pow
pub trait Pow<Base, Exp>
Trait functions
pow
Returns self
to the power exp
.
Fully qualified path: core::num::traits::ops::pow::Pow::pow
fn pow(self: Base, exp: Exp) -> Self::Output
Trait types
Output
Fully qualified path: core::num::traits::ops::pow::Pow::Output
type Output;