[−][src]Trait num_traits::pow::Pow
Binary operator for raising a value to a power.
Associated Types
Required methods
fn pow(self, rhs: RHS) -> Self::Output
[−]
Returns self
to the power rhs
.
Examples
use num_traits::Pow; assert_eq!(Pow::pow(10u32, 2u32), 100);