Trait std::math::Power

pub trait Power {
    fn pow(self, exponent: u32) -> Self;
}
Expand description

Calculates a number to a given power.

Required Methods